You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've experienced the same issue. I don't have a UITextView inside a UITableview but outside the UITableView, the thing is,it works fine at first, but after some swipe to UITableView this thing happends which prevents the panning gesture and it results UITextView locked in the place.
Also keyboard freezing issue happends when I go back and forth to the View controller that has DAKeyboardControl several times.
I have a UITextView inside a UITableView. I've replaced the following line in two projects now, figured it's a noteworthy change. .
DAKeyboardControl.m:320 gestureRecognizer:shouldReceiveTouch:
return (![touch.view isFirstResponder] || ([self isKindOfClass:[UITextView class]] && [self isEqual:touch.view]));
replaced with
return (![touch.view isFirstResponder] || ([touch.view isKindOfClass:[UITextView class]]));
The text was updated successfully, but these errors were encountered: