如何将 textView 的内容作为电子邮件发送?
我有一个应用程序,其中有使用 textView 显示的最喜欢的报价。我想提供直接从此文本视图发送电子邮件的选项。其次,我希望能够导出为 PDF 或 Pages 文档,然后我可以通过电子邮件发送出去。有什么办法可以做到这一点吗?
I have an app that has favorite quotes that are displayed using a textView. I want to provide the option of emailing directly from this textView. Secondly I would like to be able export to a PDF or Pages document, which I can then email out. Is there any way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
沿着 textView 放置一个 UIButton 并像这样发送电子邮件
place a UIButton along the textView and send email like this
对于电子邮件,您应该使用 MFMailComposerViewController。要导出它,您首先需要生成 pdf。然后将其作为附件添加到邮件中。您可以按照本教程在 iPhone 中生成 pdf 进行操作。希望有帮助。
For emailing, you should use MFMailComposerViewController. To export it, you would first require to generate a pdf. And then add it as an attachment to a mail. You can follow this tutorial on generating pdfs in iPhone. Hope that helps.