オーディオを録音し、AVAudioRecorder を使用してファイルに保存した後、アプリからユーザーにメールで送信します。それはうまくいっています。
ただし、アプリにある画像を取得してビデオに添付し、電子メールで送信する必要があります。これにより、ビデオの再生中にその画像がプレーヤーに表示されます。
どうやってやるの?
ありがとう。
私は次のようにメールを送信します。
NSArray *toRecipients = [NSArray arrayWithObject:@"your email"];
[picker setToRecipients:toRecipients];
NSString *sound=[NSString stringWithFormat:@"sound%d.caf",[memoryInstnace getLastRecordSoundNumber]];
NSArray *paths2 = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *dataPath = [[paths2 objectAtIndex:0] stringByAppendingPathComponent:sound];
NSData *data = [NSData dataWithContentsOfFile:dataPath];
[picker addAttachmentData:data mimeType:@"caf" fileName:sound];//