在使用MFMailComposeViewController 之前需要引入messageui
如:
@import MessageUI;
具体实现
MFMailComposeViewController* mailController = [[MFMailComposeViewController alloc] init];
if (mailController) { // 如果没有设置邮件帐户,mailController 为nil
mailController.mailComposeDelegate = self;
[mailController setSubject:title];
[mailController setToRecipients:@[@"example@example.com"]];
[self mailController animated:YES completion:nil];
}
另外还可以通过url的方式直接打开写邮件:
[[UIApplication sharedApplication]openURL:[NSURL URLWithString:@"mailto:example@example.com"]];