문제

In my application, i need to launch the Mail.app of Apple. The screen i need to show to the user is

enter image description here

so that he can select whichever option he wants.

Using the MFMailComposeViewController shows the mail composition interface

enter image description here

Is is possible to launch the Mail.app programmatically, or is it forbidden by Apple.

도움이 되었습니까?

해결책

Try this:

NSURL *myURL = [NSURL URLWithString:@"mailto:adress@example.com"];

[[UIApplication sharedApplication] openURL:myURL];
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top