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'm facing some weird problem, I'm unable to hide keyboard. Here is the flow
While user is editing some of textField, at that time without touching anywhere he swipes and based on that gesture opening side menu, but on side menu Keyboard is still appear. I've wrote below code.
on ProfileVC (centerViewController)
I had the same problem. I sort of solved it for my by resigning the first responder before opening the drawers via the buttons. For the gestures, I used setDrawerVisualStateBlock like this:
// Hide the keyboard when fully opened.
if (percentVisible >= 1.0) {
dispatch_after(DISPATCH_TIME_NOW, dispatch_get_main_queue(), ^{
[APUtils findAndResignFirstReponder];
});
}
I'm facing some weird problem, I'm unable to hide keyboard. Here is the flow
While user is editing some of textField, at that time without touching anywhere he swipes and based on that gesture opening side menu, but on side menu Keyboard is still appear. I've wrote below code.
on ProfileVC (centerViewController)
on LeftMenuVC (SideViewController)
Here is what I'm getting
The text was updated successfully, but these errors were encountered: