使用Swift编写的,在iOS上使用的灵活的tableview。
灵感来源于SKSTableView。
FlexibleTableView可以通过CocoaPods获取。
pod "FlexibleTableView"
FlexibleTableView与UITableView一样工作,只是使用了一个FlexibleTableViewDelegate。
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int
func tableView(tableView: UITableView, numberOfSubRowsAtIndexPath indexPath: NSIndexPath) -> Int
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell
func tableView(tableView: UITableView, cellForSubRowAtIndexPath indexPath: FlexibleIndexPath) -> UITableViewCell
FlexibleTableView遵循MIT许可协议。更多信息请参阅LICENSE文件。