在 Objective-C 中通过电子邮件发送保存的音频文件
我编写了一个程序,可以使用 AVAudioFramework 在 iPhone 上保存音频。 现在我需要做的就是通过电子邮件将保存的音频作为附件发送给手机上的任何联系人。 有人可以帮我吗?我的时间不多了。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看看 MFMailComposeViewController,特别是
addAttachmentData:mimeType:fileName:
方法。Have a look at MFMailComposeViewController, specifically the
addAttachmentData:mimeType:fileName:
method.将其作为附件发送(使用 MFMailComposeViewController)。查找联系信息取决于您。
Send it as an attachment (using MFMailComposeViewController). Finding the contact info is up to you.