Как я могу отправить файл рекордера .mov из приложения iOS по почте в виде вложений

Я записываю аудио и сохраняю его на своем устройстве, и я хочу отправить это записанное аудио в виде почтового вложения. В настоящее время я могу отправить его по почте, но проблема в том, что когда я загружаю вложение, оно на самом деле имеет тип «данные». файл вместо файла «.mov». Поэтому я не могу воспроизвести загруженный файл.

Вот код, используемый для отправки по почте.

- (IBAction)submit:(id)sender {

    if ([MFMailComposeViewController canSendMail])
    {
        MFMailComposeViewController *mailer = [[MFMailComposeViewController alloc] init];

        mailer.mailComposeDelegate = self;

        [mailer setSubject:@"eGift"];

        NSArray *toRecipients = [NSArray arrayWithObjects:@"", nil];
        [mailer setToRecipients:toRecipients];

//        UIImage *myImage = galleryimage.image;
        NSData *imageData = [NSData dataWithContentsOfFile:recordFile];
     //   NSLog(@"%@",imageData);
        [mailer addAttachmentData:imageData mimeType:@"audio/mov" fileName:@"naveen"];


        NSString *emailBody = _smsText.text;
        [mailer setMessageBody:emailBody isHTML:NO];

        // only for iPad
        // mailer.modalPresentationStyle = UIModalPresentationPageSheet;

        [self presentModalViewController:mailer animated:YES];

        //            } else {
        //                NSLog(@"Error in resultblock in PhotoAlbumViewController!");
        //            }
        //        };



        //[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];
    }

}



#pragma mark - MFMailComposeController delegate


- (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 the next time the user connects to email");
            break;
        case MFMailComposeResultFailed:
            NSLog(@"Mail failed: the email message was nog saved or queued, possibly due to an error");
            break;
        default:
            NSLog(@"Mail not sent");
            break;
    }

    [self dismissModalViewControllerAnimated:YES];
}

person Bangalore    schedule 07.01.2014    source источник


Ответы (1)


Вам просто не хватает суффикса к типу файла... (т.е. .mov в вашем имени файла: ниже).

сделал быстрое обновление вашего кода

[mailer addAttachmentData:imageData mimeType:@"audio/mov" fileName:[recordFile lastPathComponent]];

Теперь у меня работает и открывается с помощью quicktime.

person Andrew    schedule 24.10.2014