目前我有一个 NSArray 的电子邮件,我打开一个视图来结束所有这些电子邮件的电子邮件:
MFMailComposeViewController *mailer = [[MFMailComposeViewController alloc] init];
mailer.mailComposeDelegate = self;
[mailer setSubject:@"App Support"];
NSArray *toRecipients = [NSArray arrayWithArray:emails];
[mailer setToRecipients:toRecipients];
NSString *emailBody = @"";
[mailer setMessageBody:emailBody isHTML:NO];
// only for iPad
mailer.modalPresentationStyle = UIModalTransitionStylePartialCurl;
[self presentModalViewController:mailer animated:YES];
有没有办法在不打开实际打开控制器的情况下向此列表发送电子邮件(用户无需按下发送按钮也无法更改消息)?