Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DAKeyboadHandler responds NO to gestureRecognizer:shouldReceiveTouch: when a UITextView is the first responder #65

Open
brad-goss opened this issue Apr 17, 2014 · 1 comment

Comments

@brad-goss
Copy link

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]]));

@hectorstudio
Copy link

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants