2

MFMailComposeViewControllerメールでドキュメントを送信するために使用するアプリがあります。[MFMailComposeViewController canSendEmail]メソッドがYESを返し、ドキュメントを電子メールで送信するために、少なくとも1つの電子メールを有効にする必要があることをどこかで読みました。ただし、メールボタンをタップすると、前のビューに戻るだけです。

コードを確認して[MFMailComposeViewController canSendEmail]NOを返しました。なぜこれが起こっているのか誰かに教えてもらえますか?

コードは次のとおりです。

- (void)sendEmail
{
   if ([MFMailComposeViewController canSendMail] == NO) return;
   NSURL *fileURL = document.fileURL; NSString *fileName = document.fileName;

   NSData *attachment = [NSData dataWithContentsOfURL:fileURL options:(NSDataReadingMapped|NSDataReadingUncached) error:nil];

        if (attachment != nil) 
        {
            MFMailComposeViewController *mailComposer = [MFMailComposeViewController new];

            [mailComposer addAttachmentData:attachment mimeType:@"application/pdf" fileName:fileName];

            [mailComposer setSubject:fileName]; 

            mailComposer.modalTransitionStyle = UIModalTransitionStyleCoverVertical;
            mailComposer.modalPresentationStyle = UIModalPresentationFormSheet;

            mailComposer.mailComposeDelegate = self; 

            [self presentModalViewController:mailComposer animated:YES];

            [mailComposer release];
        }
}
4

2 に答える 2

6

まず、MessageUIフレームワークを追加してインポートします

#import <MessageUI/MessageUI.h>

MFMaileComposeViewControllerDelegateを宣言します

@interface MailViewController : UIViewController <MFMailComposeViewControllerDelegate>

メールを送信するためにこのコードを書く

- (IBAction)openMail:(id)sender 
{
if ([MFMailComposeViewController canSendMail])
{
    MFMailComposeViewController *mailer = [[MFMailComposeViewController alloc] init];

    mailer.mailComposeDelegate = self;

    [mailer setSubject:@"xyz"];

    NSArray *toRecipients = [NSArray arrayWithObjects:@"fisrtMail@example.com", @"secondMail@example.com", nil];
    [mailer setToRecipients:toRecipients];


    NSData *pdfdata = [NSData dataWithContentsOfURL:"Your URL"]

    [mailController addAttachmentData:pdfData
                             mimeType:@"application/pdf"
                             fileName:@"file.pdf"];

    NSString *emailBody = @"xyz";

    [mailer setMessageBody:emailBody isHTML:NO];

    [self presentModalViewController:mailer animated:YES];

    [mailer release];
}
else
{
    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Failure"
                                                    message:@"Your device doesn't support the composer sheet"
                                                   delegate:nil
                                          cancelButtonTitle:@"OK"
                                          otherButtonTitles: nil];
    [alert show];
    [alert release];
}

}

また、MFMailComposeViewControllerDelegateのデリゲートメソッドを記述します

- (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;
    }

        // Remove the mail view
    [self dismissModalViewControllerAnimated:YES];
}
于 2012-08-08T11:54:35.647 に答える
5

iPhoneのメールアプリが認証されていないためです。[設定]->[メール](または単にメールアプリを開く)に移動し、Googleまたは別のサービスから認証を行うと、MFMailComposeViewControllerを介してメールを送信できます。(これは実際のiPhoneでは-私はシミュレーターでは試しません)

于 2012-08-08T11:51:28.050 に答える