When trying to scroll a view by touching and dragging on a text field, similarly to how you would scroll around on the edit contacts view on the iPhone, the view will not mo
I think it solution in this situation
extension UITableView { override public func touchesShouldCancelInContentView(view: UIView) -> Bool { if view is UITextField || view is UITextView { return true } return super.touchesShouldCancelInContentView(view) } }