I'm trying to hide the iPad keyboard from a modal view controller but it doesn't work. I have tried resignFirstResponder but that doesn't have any affect if we are in a modal view controller. I tried resignFirstResponder in a non-modal UINavigationController with the very same UIViewController and the keyboard hides correctly.

Does anyone know how solve this problem?

Thanks.

[Update] it looks like there's something wrong with my code because the resignFirstResponder does work (I made a simple test case instead of using my code). But I still don't know what the problem is.

link|improve this question

61% accept rate
1  
well I get the same problem in the iPad simulator so you don't need one :) – Cal May 4 '10 at 1:39
man, i was wasting a few hours with the same problem – CVertex May 13 '10 at 6:46
Yes this is definitely a bug with iOS 3.2. I fixed it by changing to loginForm.modalPresentationStyle = UIModalPresentationPageSheet instead of UIModalPresentationFormSheet – Eamonn Jul 16 '10 at 13:33
feedback

5 Answers

up vote 9 down vote accepted

It was because I was using UIModalPresentationFormSheet. All of the other ones work as expected.... Wasted several hours on that.

link|improve this answer
I've been having the exact same problem - is this a bug with UIModalPresentationFormSheet? – davbryn May 7 '10 at 15:43
I guess they assume if you're doing form entry you will never want to hide the keyboard... I ended up changing it to a non-modal view controller in my case. – Cal May 7 '10 at 18:58
1  
See 0xced's answer along with manicaesar's comment. – Jeremy White Apr 6 at 3:39
feedback

Apparently, there is a new -[UIViewController disablesAutomaticKeyboardDismissal] method that you may override to solve this problem in iOS 4.3.

link|improve this answer
1  
I've implemented this method on my modal UIViewController but it still keeps the keyboard open. Any ideas? Thanks. – morais Mar 10 '11 at 9:46
7  
@morais If you are presenting your view controller inside navigationController you have to subclass UINavigationController and implement the method there. – manicaesar Oct 6 '11 at 11:18
Wow ... where is THAT in the documentation. You just saved me a TON of work manicaesar. Thanks! – Jeremy White Apr 6 at 3:38
1  
Holy crap, manicaesar, that needs to be chiseled in the great hall of "Completely undocumented crap that causes developers to tear their hair out" for all to see. Thanks! – Morgan Harris May 2 at 5:25
feedback

I just confirmed the problem is indeed UIModalPresentationFormSheet and filed a bug report to apple rdar://8084017

link|improve this answer
Sucks that we have to wait for 4.0 to come out for iPad in "the fall" (whenever that is) – Sam Soffes Jul 13 '10 at 15:17
May i ask, have you gotten a feedback from apple regarding the bug you reported? – thatsdisgusting Aug 9 '10 at 1:45
feedback

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

link|improve this answer
feedback

My workaround for this annoying bug:

[myTextField resignFirstResponder];
@try
{
    Class UIKeyboardImpl = NSClassFromString(@"UIKeyboardImpl");
    id activeInstance = [UIKeyboardImpl performSelector:@selector(activeInstance)];
    [activeInstance performSelector:@selector(dismissKeyboard)];
}
@catch (NSException *exception)
{
    NSLog(@"%@", exception);
}

DO NOT USE THIS FOR APP STORE SUMBISSIONS, see my other answer.

link|improve this answer
1  
Wouldn't you get rejected for using a private API if you do this? – Cal Aug 30 '10 at 23:16
Maybe, I have not tried to submit this code to the App Store. But notice the @try/@catch: this code is safe to use. If the activeInstance and/or dismissKeyboard methods are removed or renamed, the unrecognized selector exception will be caught, and your app will not crash. – 0xced Aug 31 '10 at 12:40
1  
hmm, I wouldn't even try. Just wait for iOS 4 I guess. – William Denniss Oct 21 '10 at 18:13
1  
So apparently, this can get you rejected: blog.cascadesoft.net/2010/10/31/… – 0xced Nov 11 '10 at 18:21
1  
I was rejected from AppStore for this. Thank You very much! See here: stackoverflow.com/questions/5337126/… – Lukasz Apr 13 '11 at 20:24
show 5 more comments
feedback

protected by Bill the Lizard Nov 10 '10 at 12:10

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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