Apple から提供されたコード サンプルに従って、アプリに標準のメール機能を実装しました。私のコードは次のとおりです
- (IBAction)mailBtnPressed:(id)sender
{
if ([MFMailComposeViewController canSendMail])
{
mailer = [[MFMailComposeViewController alloc] init];
[mailer setDelegate:self];
[mailer setSubject:@"Een berichtje via de iPhone app"]; mailer.mailComposeDelegate = self;
NSArray *toRecipients = [NSArray arrayWithObjects:@"studio@vrtfm.be", nil];
[mailer setToRecipients:toRecipients];
NSString *emailBody = @"";
[mailer setMessageBody:emailBody isHTML:NO];
[self presentModalViewController:mailer animated:YES];
}
else
{
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Oeps..."
message:@"Dit toestel ondersteunt geen mail functionaliteit."
delegate:nil
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
[alert show];
}
}
- (void)mailComposeController:(MFMailComposeViewController*)controller didFinishWithResult:(MFMailComposeResult)result error:(NSError*)error
{
switch (result)
{
case MFMailComposeResultCancelled:
NSLog(@"Mail cancelled: you cancelled the operation and no email message was queued.");
break;
case MFMailComposeResultSaved:
NSLog(@"Mail saved: you saved the email message in the drafts folder.");
break;
case MFMailComposeResultSent:
NSLog(@"Mail send: the email message is queued in the outbox. It is ready to send.");
break;
case MFMailComposeResultFailed:
NSLog(@"Mail failed: the email message was not saved or queued, possibly due to an error.");
break;
default:
NSLog(@"Mail not sent.");
break;
}
[self becomeFirstResponder];
// Remove the mail view
[self dismissModalViewControllerAnimated:YES];
}
[送信] ボタンを押すとデリゲートが呼び出され、すべて正常に動作します。ただし、[キャンセル] ボタンを押してもデリゲートは呼び出されず、ビューが暗くなるだけです。アプリがすぐにハングします。
注: My App に StatusBar を表示していません。
私はxibを使用していませんが、コード[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
このメール機能は、iOS5、iOS5.1 で問題なく動作しています。ただし、下位バージョンでのみ問題に直面しています。
私も使ってみました[mailer setMailComposeDelegate:self];
私の現在のクラス xib のサイズは (280,480) です。
コンテンツ サイズ (1540,960) の scrollView を含む単一のビューで複数のビューを使用しています。
メソッドでビューを表示する[scrollView scrollRectToVisible:frame animated:YES];