我设置了一个MFMailComposeViewController,它的工作原理在iPhone上很好,但在iPad上崩溃,说:
*** Terminating app due to uncaught exception 'NSinvalidargumentexception',reason: 'Application tried to present a nil modal view controller on target...
那么为什么会创建一个零模式视图?
MFMailComposeViewController *message = [[MFMailComposeViewController alloc] init]; [message setMessageBody:@"My message here" isHTML:NO]; [message setToRecipients:[NSArray arrayWithObject:@"my@domain.com"]]; [message setSubject:@"Request Info"]; message.mailComposeDelegate = self; if (UI_USER_INTERFACE_IdioM() == UIUserInterfaceIdiomPad) message.modalPresentationStyle = UIModalPresentationFormSheet; [self presentModalViewController:message animated:YES]; [message release];
有任何想法吗?
解决方法
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。