How to prevent crash on Cancel of MFMailComposeViewController?
问题 Somewhere: if([MFMailComposeViewController canSendMail]) { MFMailComposeViewController *email_vc = [[MFMailComposeViewController alloc] init]; email_vc.mailComposeDelegate = self; [email_vc setSubject:subject]; [email_vc setMessageBody:message isHTML:FALSE]; [email_vc setToRecipients:recipients]; [self presentModalViewController:email_vc animated:FALSE]; [[UIApplication sharedApplication] setStatusBarHidden:TRUE]; [email_vc release]; } else ... Somewhere else: - (void)mailComposeController: