TableKit is a super lightweight yet powerful generic library that allows you to build complex table views in a declarative type-safe manner.
It hides a complexity of UITableViewDataSource and UITableViewDelegate methods behind the scene, so your code will be look clean, easy to read and nice to maintain.
- Type-safe generic cells
- Functional programming style friendly
- The easiest way to map your models or view models to cells
- Automatic cell registration*
- Correctly handles autolayout cells with multiline labels
- Chainable cell actions (select/deselect etc.)
- Support cells created from code, xib, or storyboard
- Support different cells height calculation strategies
- Support portrait and landscape orientations
- No need to subclass
- Extensibility
An example app is included demonstrating TableKit's functionality.
Create your rows:
import TableKit
letrow1=TableRow<StringTableViewCell>(item:"1")letrow2=TableRow<IntTableViewCell>(item:2)letrow3=TableRow<UserTableViewCell>(item:User(name:"John Doe", rating:5))Put rows into section:
letsection=TableSection(rows:[row1, row2, row3])And setup your table:
lettableDirector=TableDirector(tableView: tableView)
tableDirector += sectionDone. Your table is ready. Your cells have to conform to ConfigurableCell protocol:
classStringTableViewCell:UITableViewCell,ConfigurableCell{func configure(with string:String){
textLabel?.text = string
}}classUserTableViewCell:UITableViewCell,ConfigurableCell{staticvarestimatedHeight:CGFloat?{return100}
// is not required to be implemented
// by default reuse id is equal to cell's class name
staticvarreuseIdentifier:String{return"my id"}func configure(with user:User){
textLabel?.text = user.name
detailTextLabel?.text ="Rating: \(user.rating)"}}You could have as many rows and sections as you need.
It nice to have some actions that related to your cells:
letaction=TableRowAction<StringTableViewCell>(.click){(options)in
// you could access any useful information that relates to the action
// options.cell - StringTableViewCell?
// options.item - String
// options.indexPath - IndexPath
// options.userInfo - [AnyHashable: Any]?
}letrow=TableRow<StringTableViewCell>(item:"some", actions:[action])Or, using nice chaining approach:
letrow= TableRow<StringTableViewCell>(item:"some").on(.click){(options)in}.on(.shouldHighlight){(options)->Boolinreturnfalse}You could find all available actions here.
You are able to define your own actions:
structMyActions{staticletButtonClicked="ButtonClicked"}classMyTableViewCell:UITableViewCell,ConfigurableCell{@IBActionfunc myButtonClicked(sender:UIButton){TableCellAction(key:MyActions.ButtonClicked, sender:self).invoke()}}And handle them accordingly:
letmyAction=TableRowAction<MyTableViewCell>(.custom(MyActions.ButtonClicked)){(options)in}It's also possible to use multiple actions with same type:
letclick1=TableRowAction<StringTableViewCell>(.click){(options)in}
click1.id ="click1" // optional
letclick2=TableRowAction<StringTableViewCell>(.click){(options)in}
click2.id ="click2" // optional
letrow=TableRow<StringTableViewCell>(item:"some", actions:[click1, click2])Could be useful in case if you want to separate your logic somehow. Actions will be invoked in order which they were attached.
If you define multiple actions with same type which also return a value, only last return value will be used for table view.
You could also remove any action by id:
row.removeAction(forActionId:"action_id")By default TableKit relies on self-sizing cells. In that case you have to provide an estimated height for your cells:
classStringTableViewCell:UITableViewCell,ConfigurableCell{
// ...
staticvarestimatedHeight:CGFloat?{return255}}It's enough for most cases. But you may be not happy with this. So you could use a prototype cell to calculate cells heights. To enable this feature simply use this property:
lettableDirector=TableDirector(tableView: tableView, shouldUsePrototypeCellHeightCalculation:true)It does all dirty work with prototypes for you behind the scene, so you don't have to worry about anything except of your cell configuration:
classImageTableViewCell:UITableViewCell,ConfigurableCell{func configure(with url:NSURL){loadImageAsync(url: url, imageView: imageView)}overridefunc layoutSubviews(){
super.layoutSubviews()
contentView.layoutIfNeeded()
multilineLabel.preferredMaxLayoutWidth = multilineLabel.bounds.size.width
}}You have to additionally set preferredMaxLayoutWidth for all your multiline labels.
It's never been so easy to deal with table views.
letusers= /* some users array */
let click =TableRowAction<UserTableViewCell>(.click){}letrows= users.filter({ $0.state ==.active }).map({TableRow<UserTableViewCell>(item: $0.name, actions:[click])})
tableDirector += rowsDone, your table is ready.
TableKit can register your cells in a table view automatically. In case if your reusable cell id matches cell's xib name:
MyTableViewCell.swiftMyTableViewCell.xibYou can also turn off this behaviour:
lettableDirector=TableDirector(tableView: tableView, shouldUseAutomaticCellRegistration:false)and register your cell manually.
To integrate TableKit into your Xcode project using CocoaPods, specify it in your Podfile:
pod'TableKit'Add the line github "maxsokolov/tablekit" to your Cartfile.
Clone the repo and drag files from Sources folder into your Xcode project.
- iOS 8.0
- Xcode 9.0
Keep an eye on changes.
TableKit is available under the MIT license. See LICENSE for details.