diff --git a/README.md b/README.md index 60a5329..327826e 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Build Status Swift 2.2 compatible Carthage compatible - CocoaPods compatible + CocoaPods compatible Platform iOS License: MIT

@@ -17,6 +17,7 @@ It hides a complexity of `UITableViewDataSource` and `UITableViewDelegate` metho - [x] Type-safe generic cells - [x] Functional programming style friendly - [x] The easiest way to map your models or view models to cells +- [x] Automatic cell registration - [x] Correctly handles autolayout cells with multiline labels - [x] Chainable cell actions (select/deselect etc.) - [x] Support cells created from code, xib, or storyboard @@ -44,7 +45,6 @@ let section = TableSection(rows: [row1, row2, row3]) And setup your table: ```swift let tableDirector = TableDirector(tableView: tableView) -tableDirector.register(StringTableViewCell.self, IntTableViewCell.self, FloatTableViewCell.self) tableDirector += section ``` Done. Your table is ready. You may want to look at your cell. It has to conform to `ConfigurableCell` protocol: diff --git a/TableKit.podspec b/TableKit.podspec index 6835141..85230b7 100644 --- a/TableKit.podspec +++ b/TableKit.podspec @@ -2,7 +2,7 @@ Pod::Spec.new do |s| s.name = 'TableKit' s.module_name = 'TableKit' - s.version = '0.9.0' + s.version = '0.9.1' s.homepage = 'https://github.com/maxsokolov/TableKit' s.summary = 'Type-safe declarative table views. Swift 2.2 is required.'