花了一些时间查看关于堆栈溢出的类似问题,遗憾的是没有人能解决我的问题。
我使用UIActionSheet
,当用户点击操作表上的发送电子邮件时,会调用以下代码:
if ([MFMailComposeViewController canSendMail]){
NSString *emailTitle = @"bla bla bla";
// Email Content
NSString *messageBody = @"bla bla bla";
// To address
NSArray *toRecipents = [NSArray arrayWithObject:@"test@test.com"];
MFMailComposeViewController *mc = [[MFMailComposeViewController alloc] init];
mc.mailComposeDelegate = self;
[mc setSubject:emailTitle];
[mc setMessageBody:messageBody isHTML:NO];
[mc setToRecipients:toRecipents];
[self.view.window.rootViewController presentViewController:mc animated:YES completion:NULL];
NSLog(@"email view opened");
}
else{
UIAlertView *anAlert = [[UIAlertView alloc] initWithTitle:@"Error" message:@"No mail account setup on device" delegate:self cancelButtonTitle:nil otherButtonTitles:nil];
[anAlert addButtonWithTitle:@"Cancel"];
[anAlert show];
}
MFMailComposeViewController
在我的iPhone上以纵向模式打开,但在iPad上以横向模式打开应用程序时,没有任何反应。没有视图弹出,什么都没有。
它显示"电子邮件视图已打开"在NSLog
但没有别的。
思考?
修改该应用仅限iPhone上的人像,以及iPad的任何方向
再次编辑 在玩了一下之后,如果我将代码分配给按钮,它可以正常工作,只有当从操作表中选择电子邮件时才出现此问题
答案 0 :(得分:0)
找到答案,就是这样:
dispatch_async(dispatch_get_main_queue(), ^ {
// INSERT EMAIL CODE HERE
});