iphone email attachment

后端 未结 4 1270
醉酒成梦
醉酒成梦 2020-12-03 04:06

I used the MessageUI framework to send the mail with attachment from my application. But i got the following error,

2009-09-07 19:52:23.483         


        
4条回答
  •  一个人的身影
    2020-12-03 04:31

    Add following method to dismiss the MFMailComposeViewController:

    - (void)mailComposeController:(MFMailComposeViewController*)controller didFinishWithResult:   (MFailComposeResult)result error:(NSError*)error
    
     {
     // NEVER REACHES THIS PLACE
     [self dismissModalViewControllerAnimated:YES];
    
     NSLog (@"mail finished");
     }
    

提交回复
热议问题