gpt4 book ai didi

iphone - 邮件功能 iphone App 崩溃

转载 作者:行者123 更新时间:2023-12-03 17:46:05 25 4
gpt4 key购买 nike

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

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

最佳答案

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

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

快乐编码!@!!!

关于iphone - 邮件功能 iphone App 崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16916171/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com