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
After having hide the keyboard, if you leave your view for another with a standart text field, the keyboard won't be accessible, you should restore visibility after keyboardDidHide :
After having hide the keyboard, if you leave your view for another with a standart text field, the keyboard won't be accessible, you should restore visibility after keyboardDidHide :
-(void)keyboardDidHide:(NSNotification *)aNotification
{
if( self.keyboardView )
{
// Restore keyboard visibility !
self.keyboardView.hidden = NO;
}
}
The text was updated successfully, but these errors were encountered: