我尝试通过文件 aac (kAudioFormatMPEG4AAC) 格式发送音频记录,但附加的文件没有发送
*myString = file://localhost/private/var/mobile.......
这是我的代码
MFMailComposeViewController *picker =
[[MFMailComposeViewController alloc] init];
picker.mailComposeDelegate = self;
[picker setSubject:@"My Audio File"];
NSString *fileName = @"Rec.aac";
NSString *documentsDirectory = myString ;
NSString *path = [documentsDirectory stringByAppendingPathComponent:fileName];
NSData *data = [NSData dataWithContentsOfFile:path];
[picker addAttachmentData:data mimeType:@"audio/aac"
fileName:fileName];
NSString *emailBody = @"AAC format sound file attached.";
[picker setMessageBody:emailBody isHTML:YES];
[self presentModalViewController:picker animated:YES];
[picker release];