All notable changes to this project will be documented in this file.
Released on 2019-09-29.
- Swift 5.1 support.
Released on 2019-04-04.
- Swift 5.0 support.
Released on 2018-09-30.
- Swift 4.2 support.
Released on 2017-09-24.
- Swift 4.0 support.
Released on 2016-11-16.
shouldUsePrototypeCellHeightCalculation
moved toTableDirector(tableView: tableView, shouldUsePrototypeCellHeightCalculation: true)
- Prototype cell height calculation bugfixes
Released on 2016-10-19.
action
method was deprecated on TableRow. Useon
instead.- Support multiple actions with same type on row.
- You could now build your own cell height calculating strategy. See TablePrototypeCellHeightCalculator.
- Default distance between sections changed to
UITableViewAutomaticDimension
. You can customize it, see TableSection
Released on 2016-10-06. Breaking changes in 2.0.0:
The signatures of TableRow
and TableRowAction
classes were changed from
let action = TableRowAction<String, StringTableViewCell>(.click) { (data) in
}
let row = TableRow<String, StringTableViewCell>(item: "some string", actions: [action])
to
let action = TableRowAction<StringTableViewCell>(.click) { (data) in
}
let row = TableRow<StringTableViewCell>(item: "some string", actions: [action])
This is the great improvement that comes from the community. Thanks a lot!
Released on 2016-09-04. Swift 3.0 support.
Released on 2015-11-15. Initial release called Tablet.