vote up 0 vote down star
1

Hi,

Is there a way to dismiss the keyboard from MFMailComposeViewController ? If the user rotates the device, I am loading a separate controller without "send" or "cancel" being pressed, and the keyboard is remaining on screen. Is there an way to dismiss the keyboard without "done" or "send" being pressed?

Thanks in advanced guys and gals. I appreciate your help.

flag

1 Answer

vote up 0 vote down check

You can find the first responder and ask it to resign active which should dismiss the keyboard.

    UIWindow* keyWindow = [[UIApplication sharedApplication] keyWindow];
UIView* firstResponder = [keyWindow performSelector:@selector(firstResponder)];
[firstResponder resignFirstResponder];
link|flag
Wow, this worked like a charm... Thanks – Yuri Nov 1 at 22:51

Your Answer

Get an OpenID
or

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