I have two text fields email and password. The following code works fine when the fields are presented on a regular view but when they are on a popover, the resignFirstResponder does not work (becomeFirstResponder works). textFieldsShouldReturn was called for both fields. Any idea if I am missing something? Thanks!

- (BOOL)textFieldShouldReturn:(UITextField *)theTextField {

 if (theTextField == email) {
     [password becomeFirstResponder];
     return NO;
 }

 [theTextField resignFirstResponder];
 return NO;

}

link|improve this question

50% accept rate
3  
Sounds like a bug. I'd suggest filing a report at bugreport.apple.com. – Noah Witherspoon May 10 '10 at 21:10
1  
Having the same problem when the textFields are in a modal view with modalPresentationStyle = UIModalPresentationFormSheet – Marco Mustapic Jul 6 '10 at 20:39
I am experiencing this bug as well. – Sam Soffes Jul 13 '10 at 14:59
Refer to stackoverflow.com/questions/3372333/ – an0 Nov 17 '10 at 21:54
feedback

5 Answers

Check this question:

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;
}
link|improve this answer
feedback

Are you setting the delegate correctly?

link|improve this answer
feedback

I'm not too sure about this, but, as I understand the responder hierarchy, resign would work only if you have some other responder to answer.

In a regular view, the view itself is willing. In a popup, maybe you need to do something to your popup class (like reimplement some Responder methods) in order for this to work.

link|improve this answer
feedback

I was also having this problem. But I solved this by making a another control, which is not in the popover as firstResponder and later a resigned it from there. But I don't what is the problem with popover.

link|improve this answer
feedback

As described in this answer, the keyboard will sometimes remain on-screen when the view is presented with the UIModalPresentationFormSheet style.

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.