MFMailComposeViewController - iPad

前端 未结 5 1702
失恋的感觉
失恋的感觉 2020-12-28 13:46

I\'ve setup a MFMailComposeViewController and it works just fine on the iPhone, but on the iPad it crashes, saying:

*** Terminating app due to uncaught excep         


        
5条回答
  •  渐次进展
    2020-12-28 14:20

    No mail account set up on your testing device.

    if ([MFMailComposeViewController canSendMail]){
    
    //execute your code 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];
    }
    

提交回复
热议问题