MFMailComposeViewController:取消不退出到我的应用程序?

我正在尝试使用MFMailComposeViewController发送邮件。 当我点击我的应用程序上的按钮时会发生这种情况 当然,当我单击邮件控制器的“取消”按钮时,我想返回到我的应用程序视图,但它不起作用。 该怎么办 ? 这是我的代码:

MFMailComposeViewController *controller = [[MFMailComposeViewController alloc] init]; controller.mailComposeDelegate = self; [controller setSubject:@"Subject"]; [controller setMessageBody:@"Test" isHTML:YES]; [controller setToRecipients:nil]; if(controller) [self presentModalViewController:controller animated:YES]; 

谢谢你的建议

你有没有实现这个委托方法? 在用户退出composer php之后调用它。

 - (void)mailComposeController:(MFMailComposeViewController*)controller didFinishWithResult:(MFMailComposeResult)result error:(NSError*)error { [self dismissViewControllerAnimated:YES completion:nil]; return; }