From 1df6447d7357691eabf05aa3d1c1bbd4c608549d Mon Sep 17 00:00:00 2001 From: Max Sokolov Date: Fri, 2 Sep 2016 21:09:28 +0300 Subject: [PATCH] set estimatedHeight nil by default --- Sources/ConfigurableCell.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/ConfigurableCell.swift b/Sources/ConfigurableCell.swift index 18035ff..5ec461e 100644 --- a/Sources/ConfigurableCell.swift +++ b/Sources/ConfigurableCell.swift @@ -42,7 +42,7 @@ public extension ConfigurableCell where Self: UITableViewCell { static var estimatedHeight: CGFloat? { get { - return UITableViewAutomaticDimension + return nil } }