我试图将系统定义的视图控制器(MFMailComposeViewController、TWTweetComposeViewController 等)显示为模式视图。
但是这些视图控制器不会出现在 iOS 7 中(它们在 iOS5、iOS6 中运行)。
我创建的视图控制器出现在 iOS7(ex.HogeViewController)中。
我不打电话presentViewController:animated:completion
给viewDidLoad
或viewWillAppear
。
有人有想法吗?
控制台日志:
init Error Domain=NSCocoaErrorDomain Code=4097 “操作无法完成。(Cocoa 错误 4097。)”
或者
_serviceViewControllerReady:error: Error Domain=NSCocoaErrorDomain Code=4097 “操作无法完成。(Cocoa 错误 4097。)”
或者
开始/结束外观转换的不平衡调用。
TWTweetComposeViewController(不出现)
TWTweetComposeViewController *viewController = [[TWTweetComposeViewController alloc]init];
viewController.completionHandler = ^(TWTweetComposeViewControllerResult result){
NSLog(@"Result : %d",result);
};
[self presentViewController:viewController animated:YES completion:NULL];
日志
结果:0
MFMailComposeViewController(出现片刻并很快消失)
- (void)send:(NSString*)email{
if ([MFMailComposeViewController canSendMail]) {
MFMailComposeViewController *picker = [[MFMailComposeViewController alloc] init];
picker.mailComposeDelegate = self;
NSArray *toRecipients = @[email];
[picker setToRecipients:toRecipients];
[picker setSubject:@"Subject"];
[picker setMessageBody:@"Body" isHTML:NO];
[self.navigationController presentViewController:picker animated:YES completion:NULL];
}
}
- (void)mailComposeController:(MFMailComposeViewController *)controller didFinishWithResult:(MFMailComposeResult)result error:(NSError*)error {
[self dismissViewControllerAnimated:YES completion:^{
NSLog(@"error:%@,result:%d",error.description,result);
}];
}
日志
_serviceViewControllerReady:error: Error Domain=NSCocoaErrorDomain Code=4097“操作无法完成。(Cocoa 错误 4097。)”对 . 错误:(空),结果:0