Currently developing to a stable version. Use as an experiment for now.
QuickTable is a subclass of UITableView, you can set it up via interface builder or in code. No need to worry about UItableViewDelegate and DataSource!
let tableView = QuickTable()
tableView.register(UITableViewCell.self, forCellReuseIdentifier: "MyTableViewCell")
Create a row you want to display, add it to a section and set the section to the QuickTable
let row = QuickRow(reuseIdentifier: "MyTableViewCell", styleBlock: { (cell) in
cell.textLabel?.text = "Hello World!"
})
let section = QuickSection(quickRowModels: [row])
You can style the section by passing options
let secondSection = QuickSection(options: [.headerTitle("The Header"), .footerTitle("The Footer")])
Tapping on a row is handled via a block
row.selectionBlock = { (cell) -> Bool in
// The row was selected do something!
// return if the cell should auto deselect
return true
}
You can use automatic height computation or define the height on a section or row level
section.rowHeight = 60
// OR
row.computeRowHeightBlock { (row) -> CGFloat in
return 100
}
To run the example project, clone the repo, and run pod install
from the Example directory first.
Swift 3.1
QuickTable is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod "QuickTable"
QuickTable is available under the MIT license. See the LICENSE file for more info.