Tag: mfmailcomposeviewcontroller presentmodalviewcontroller

MFMailComposeViewController在iOS5中dismissModalViewControllerAnimated时崩溃

我在我的conde使用MFMailComposeViewController来提供邮件function,但发送邮件或当我想取消邮件后,它将崩溃。 下面是我的代码: (IBAction)FnForPlutoSupportEmailButtonPressed:(id)sender { { if ([MFMailComposeViewController canSendMail]) { MFMailComposeViewController *mailer = [[MFMailComposeViewController alloc] init]; mailer.mailComposeDelegate = self; [mailer setSubject:@"Need help from Pluto support team"]; NSArray *toRecipients = [NSArray arrayWithObjects:@"support@myplu.to",nil]; [mailer setToRecipients:toRecipients]; NSString *emailBody = @""; [mailer setMessageBody:emailBody isHTML:NO]; //mailer.modalPresentationStyle = UIModalPresentationPageSheet; [self presentModalViewController:mailer animated:YES]; } else { UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Failure" message:@"Your […]