MFMailComposeViewController无法运行iOS 9

时间:2016-05-18 05:45:15

标签: xcode email object null ios9

我正在使用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];

}

请提供任何解决方案。 screen shot for it

0 个答案:

没有答案