diff --git a/Source/Core/Cell.swift b/Source/Core/Cell.swift index e5e851fb..7d008238 100644 --- a/Source/Core/Cell.swift +++ b/Source/Core/Cell.swift @@ -47,7 +47,7 @@ open class BaseCell: UITableViewCell, BaseCellType { Function that returns the FormViewController this cell belongs to. */ public func formViewController() -> FormViewController? { - var responder: AnyObject? = self + var responder: UIResponder? = self while responder != nil { if let formVC = responder as? FormViewController { return formVC