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?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
place a UIButton along the textView and send email like this
|
|||
|
|
|
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. |
|||||
|
|