メール アカウントが追加されていないデバイスでクリックしてメールを作成すると、アプリがクラッシュします。誰でも私が間違っているかもしれないことを知っています。事前に感謝します。
- (IBAction)sendMail:(id)sender {
MFMailComposeViewController *mail = [[MFMailComposeViewController alloc] init];
NSArray *recipients = [NSArray arrayWithObject:@""];
mail.mailComposeDelegate = self;
[mail setSubject:@""];
[mail setToRecipients:recipients];
[self presentViewController:mail animated:YES completion:NULL];
}