-
Notifications
You must be signed in to change notification settings - Fork 22
Open
Description
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;
}
}
Metadata
Metadata
Assignees
Labels
No labels