我正在使用xcode 7.3并使用以下代码打开MfMailComposeViewController,邮件编辑器的对象在alloc init之后变为nil。
- (void)openMailComposer {
NSString *emailTitle = @"Invite for SpotFit";
MFMailComposeViewController *mailVC = [[MFMailComposeViewController alloc] init];
mailVC.mailComposeDelegate = self;
[mailVC setSubject:emailTitle];
[mailVC setMessageBody:AppLink isHTML:NO];
[self presentViewController:mailVC animated:NO completion:nil];
}