Can't send email with video/audio attachment on iphone!

后端 未结 1 1388
北海茫月
北海茫月 2020-12-11 13:09

I am trying to send an email with MFMailComposeViewController. I\'m able to send emails with images attached, but when I try to attach mp3 or mp4 files I get this message: <

相关标签:
1条回答
  • 2020-12-11 14:02
    NSString *mp3File = [NSTemporaryDirectory() stringByAppendingPathComponent: @"tmp.mp3"];
    NSURL    *fileURL = [[NSURL alloc] initFileURLWithPath:mp3File];
    NSData *soundFile = [[NSData alloc] initWithContentsOfURL:fileURL];
    [mailDialogController addAttachmentData:soundFile mimeType:@"audio/mpeg" fileName:@"tmp.mp3"];
    

    works for me with mp3 files. when you say it fails with mp4, in what way?

    if app is crashing after a few, you have a memory leak somewhere most likely.

    0 讨论(0)
提交回复
热议问题