在未添加邮件帐户的情况下,单击以在设备上撰写邮件时,我的应用程序崩溃。任何人都知道我可能做错了什么。任何帮助将不胜感激提前感谢。
- (IBAction)sendMail:(id)sender {
MFMailComposeViewController *mail = [[MFMailComposeViewController alloc] init];
NSArray *recipients = [NSArray arrayWithObject:@""];
mail.mailComposeDelegate = self;
[mail setSubject:@""];
[mail setToRecipients:recipients];
[self presentViewController:mail animated:YES completion:NULL];
}