-1

在我的应用程序中使用电子邮件功能时,如果我们没有在任何电子邮件地址登录,应用程序就会崩溃。

无论如何要为此添加例外,即用户在没有应用程序崩溃的情况下获得 Alertview?

4

1 回答 1

1

您可以做的是检查设备是否可以发送邮件,如下所示。

 MFMailComposeViewController *picker = [[MFMailComposeViewController alloc] init];
picker.mailComposeDelegate = self;
 if ([MFMailComposeViewController canSendMail] == NO) {
       //your alertview telling error 
    return;
}
   else
 {
    //your code for sending mail
  }

快乐编码!@!!!

于 2013-06-04T11:05:54.193 回答