Reputation: 1608
I am using MFMailComposeViewController to compose email for my iPhone app. How could I dismiss keyboard after entering 'toRecipients'?
Upvotes: 3
Views: 596
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