Nijil Nair
Nijil Nair

Reputation: 1608

How to dissmiss keyboard in MFMailComposeViewController?

I am using MFMailComposeViewController to compose email for my iPhone app. How could I dismiss keyboard after entering 'toRecipients'?

Upvotes: 3

Views: 596

Answers (1)

Wolverine
Wolverine

Reputation: 4329

Try this.

UIWindow* keyWindow = [[UIApplication sharedApplication] keyWindow];
UIView* firstResponder = [keyWindow performSelector:@selector(firstResponder)];
[firstResponder resignFirstResponder];

But Also Remember.

Important: The mail composition interface itself is not customizable and must not be modified by your application. Apple might reject your app for it. Documentation

Upvotes: 2

Related Questions