update readme

This commit is contained in:
Max Sokolov 2016-06-17 00:01:55 +03:00
parent 1266a91446
commit 86b93ae78d
1 changed files with 2 additions and 2 deletions

View File

@ -62,8 +62,6 @@ class StringTableViewCell: UITableViewCell, ConfigurableCell {
```
You could have as many rows and sections as you need.
## Advanced
#### Row actions
It nice to have some actions that related to your cells:
@ -110,6 +108,8 @@ let builder = TableRowBuilder<String, StringTableViewCell>(items: ["1", "2", "3"
section.append(builder: builder)
```
## Advanced
#### Cell height calculating strategy
By default TableKit relies on <a href="https://developer.apple.com/library/ios/documentation/UserExperience/Conceptual/AutolayoutPG/WorkingwithSelf-SizingTableViewCells.html" target="_blank">self-sizing cells</a>. In that case you have to provide an estimated height for your cells:
```swift