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
In inputKeyboardWillShow the visibility of keyboardActiveView gets set with self.keyboardActiveView.hidden = NO; but the property keyboardActiveView only gets set in inputKeyboardDidShow, which causes an issue where the keyboard is hidden in some cases when animating up.
Is there a reason we grab the keyboardview in inputKeyboardDidShow instead of inputKeyboardWillShow?
The text was updated successfully, but these errors were encountered:
In
inputKeyboardWillShow
the visibility of keyboardActiveView gets set withself.keyboardActiveView.hidden = NO;
but the propertykeyboardActiveView
only gets set ininputKeyboardDidShow
, which causes an issue where the keyboard is hidden in some cases when animating up.Is there a reason we grab the keyboardview in
inputKeyboardDidShow
instead ofinputKeyboardWillShow
?The text was updated successfully, but these errors were encountered: