Reputation: 39
I wrote a program that is able to save audio on iphone by using AVAudioFramework. Now what i need to do is send this saved audio to any contact on the phone via email as an attachment. Could some help me please? I'm running out of time.
Upvotes: 1
Views: 650
Reputation: 47729
Send it as an attachment (using MFMailComposeViewController). Finding the contact info is up to you.
Upvotes: 0
Reputation: 53551
Have a look at MFMailComposeViewController, specifically the addAttachmentData:mimeType:fileName:
method.
Upvotes: 1