Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
From the help of SO I went with exporting to PDF. Pages specification is not yet released by Apple and Word documents are a pain in the butt apparently. PDFs worked fine and is fast generating. – jroyce Mar 5 '12 at 4:05

2 Answers

up vote 2 down vote accepted

place a UIButton along the textView and send email like this

-(void)sendEmail 

{
 

 MFMailComposeViewController *picker = [[MFMailComposeViewController alloc] init];
 picker.mailComposeDelegate = self;
 
 [picker setSubject:urSubject];
 
  NSString *emailBody =
 [NSString stringWithString:urTextView.text];
 
 [picker setMessageBody:emailBody isHTML:NO];  
 
 [self presentModalViewController:picker animated:YES];
 [picker release];
 
}
share|improve this answer
Perfect thanks! – jroyce Feb 21 '12 at 19:11

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.

share|improve this answer
awesome thanks for the link. – jroyce Feb 21 '12 at 19:05
Your welcome jroyce :) – Bani Uppal Mar 5 '12 at 3:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.