Ios7 如果未配置邮件应用,则不会从其他应用打开它

Ios7 如果未配置邮件应用,则不会从其他应用打开它,ios7,Ios7,我试图通过调用iPad中的邮件应用程序,通过邮件共享图片。但是,如果未配置邮件,则不会打开邮件应用程序。 请提供一些建议。只需检查邮件是否已配置,如果未配置,请提醒用户进行配置 if ([MFMailComposeViewController canSendMail]) { // mail is configured } else { //alert the user } 在显示mail composer之前,您应该检查设备是否能够发送邮件。 如果未配置邮件,则在设置应用程序中显示邮件

我试图通过调用iPad中的邮件应用程序,通过邮件共享图片。但是,如果未配置邮件,则不会打开邮件应用程序。
请提供一些建议。

只需检查邮件是否已配置,如果未配置,请提醒用户进行配置

if ([MFMailComposeViewController canSendMail]) {
  // mail is configured
}
else
{
  //alert the user
}

在显示mail composer之前,您应该检查设备是否能够发送邮件。 如果未配置邮件,则在设置应用程序中显示邮件配置屏幕/页面

if([MFMailComposeViewController canSendMail])
    {
        // device can send mail, display mail composer here
    }
    else
    {
        //No mail acc is configured, so display setting for configuration 
        [[UIApplication sharedApplication] openURL: [NSURL URLWithString: @"mailto:test@test.com"]] ;
    }