I am running into an issue where the keyboard does not get dismissed when leaving a UITextField or UITextView in a UIModalPresentationFormSheet. In addition, I've created a large button to serve as the view's background so if the user taps outside the fields it gets triggered. I am using the same code in a regular view controller, and it works as expected. In the modal view controller it does nothing. Any suggestions would be appreciated.

- (BOOL)textFieldShouldReturn:(id)sender {  
 [titleTextField resignFirstResponder];
 return YES;
}

- (BOOL)textViewShouldReturn:(id)sender {  
 [synopsisTextView resignFirstResponder];
 return YES;
}

- (IBAction)textFieldDoneEditing:(id)sender {  
 [sender resignFirstResponder];
} 

- (IBAction)textViewDoneEditing:(id)sender {  
 [sender resignFirstResponder];
} 

- (IBAction)backgroundClick:(id)sender {  
 [titleTextField resignFirstResponder];
 [synopsisTextView resignFirstResponder];
}
link|improve this question

69% accept rate
Don't know if you solved this, but I am having a similar issue: stackoverflow.com/questions/3372333/… – Kalle Aug 2 '10 at 9:50
feedback

4 Answers

up vote 25 down vote accepted

Overriding disablesAutomaticKeyboardDismissal to return NO as below fixed the same problem of mine. You should put this code to your view controller, from which you initiate the keyboard:

- (BOOL)disablesAutomaticKeyboardDismissal {
    return NO;
}

Also, check this SO question if you want to get a detailed explanation.

link|improve this answer
Thanks so much. That solved a very annoying issue for me! :) – DenVog Jun 8 '11 at 17:49
glad to help :] i was almost going crazy because of this! – davsan Jun 8 '11 at 21:39
It works, Thanks! This is so tricky. How on earth can I figure this out on my own? ughhh!! – Hlung Sep 15 '11 at 10:49
I think you should put the code to the view controller that is presented as modal view controller. If you are presenting modally UINavigationController (with view controllers on stack), you should subclass it and override the method there. – manicaesar Oct 6 '11 at 11:21
I'm so glad I found this thread... – Unfalkster Dec 7 '11 at 1:44
show 2 more comments
feedback

If you're presenting a modal view with presentation style "form sheet", Apple apparently does not dismiss the keyboard, thinking that they don't want the keyboard to jump in and out where a user will be doing a lot of editing (i.e. "forms"). The fix would be to change presentation style or live with it.

link|improve this answer
Yes. I'm using UIModalPresentationFormSheet. Thanks for that info. – DenVog Aug 5 '10 at 20:04
Annoyingly here, to get a smooth fade out from the ModalVC you need to animate out the keyboard first. stackoverflow.com/questions/2898353/… – Nick Cartwright Sep 17 '10 at 13:27
feedback

For those having trouble with UINavigationController, I think there is a better solution than a category on UIViewController. We should change the behavior of UINavigationController to ask it's topViewController (IMO, this is how all VC containers should handle this).

@implementation UINavigationController (DelegateAutomaticDismissKeyboard)
- (BOOL)disablesAutomaticKeyboardDismissal {
    return [self.topViewController disablesAutomaticKeyboardDismissal];
}
link|improve this answer
feedback

I solved this by resizing a UIModalPresentationPageSheet. See my answer here.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.