All Versions
16
Latest Version
Avg Release Cycle
117 days
Latest Release
1119 days ago
Changelog History
Page 2
Changelog History
Page 2
-
v2.3.0 Changes
November 16, 2016๐ Released on 2016-11-16.
- ๐
shouldUsePrototypeCellHeightCalculation
moved toTableDirector(tableView: tableView, shouldUsePrototypeCellHeightCalculation: true)
- ๐ Prototype cell height calculation bugfixes
- ๐
-
v2.2.0
October 30, 2016 -
v2.1.0 Changes
๐ 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](Sources/TablePrototypeCellHeightCalculator.swift).
- ๐ Default distance between sections changed to
UITableViewAutomaticDimension
. You can customize it, see [TableSection](Sources/TableSection.swift)
- ๐
-
v2.0.0 Changes
๐ Released on 2016-10-06. Breaking changes in 2.0.0: The signatures of
TableRow
andTableRowAction
classes were changed fromlet 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!
-
v1.3.0 Changes
๐ Released on 2016-09-04. Swift 3.0 support.
-
v0.1.0 Changes
๐ Released on 2015-11-15. Initial release called Tablet.