From 86f60bccf8a400b312c57d5ea3a66951bf2d359a Mon Sep 17 00:00:00 2001 From: Kevin G Christiano Date: Fri, 24 Jan 2020 10:11:42 -0500 Subject: [PATCH] adding height override --- MVMCoreUI/Molecules/Items/DropDownFilterTableViewCell.swift | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/MVMCoreUI/Molecules/Items/DropDownFilterTableViewCell.swift b/MVMCoreUI/Molecules/Items/DropDownFilterTableViewCell.swift index bc8edf18..0826b4b5 100644 --- a/MVMCoreUI/Molecules/Items/DropDownFilterTableViewCell.swift +++ b/MVMCoreUI/Molecules/Items/DropDownFilterTableViewCell.swift @@ -68,4 +68,8 @@ import UIKit super.reset() bottomSeparatorView?.setStyle(.none) } + + public override static func estimatedHeight(forRow molecule: MoleculeModelProtocol?, delegateObject: MVMCoreUIDelegateObject?) -> CGFloat? { + return 80 + } }