Skip to content

kgellci/QuickTable

Repository files navigation

QuickTable

CI Status Version License Platform Swift 3.1

Warning

Currently developing to a stable version. Use as an experiment for now.

Usage

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
}

Example

To run the example project, clone the repo, and run pod install from the Example directory first.

Requirements

Swift 3.1

Installation

QuickTable is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "QuickTable"

Author

Kris Gellci Twitter URL

License

QuickTable is available under the MIT license. See the LICENSE file for more info.

About

A quicker way to build UITableViews

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published