From 155a4d1cb754b99b467e4d4204f3c18325d4a2fe Mon Sep 17 00:00:00 2001 From: Max Sokolov Date: Wed, 16 Nov 2016 18:17:28 +0300 Subject: [PATCH] bump readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1ad049d..9d5867d 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Build Status Swift 3.0 compatible Carthage compatible - CocoaPods compatible + CocoaPods compatible Platform iOS License: MIT

@@ -167,7 +167,7 @@ class StringTableViewCell: UITableViewCell, ConfigurableCell { ``` It's enough for most cases. But you may be not happy with this. So you could use a prototype cell to calculate cells heights. To enable this feature simply use this property: ```swift -tableDirector.shouldUsePrototypeCellHeightCalculation = true +let tableDirector = TableDirector(tableView: tableView, shouldUsePrototypeCellHeightCalculation: true) ``` It does all dirty work with prototypes for you [behind the scene](Sources/TablePrototypeCellHeightCalculator.swift), so you don't have to worry about anything except of your cell configuration: ```swift