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

Everybody i have a requirement where the user when press a UIButton it generate a PDF file for that action.

Any Suggestion.

share|improve this question
Are you looking for a code sample on how to create a PDF? – Tammen Bruccoleri Sep 1 '09 at 13:53
yes, that will be appreciated. – raaz Sep 2 '09 at 5:23

3 Answers

up vote 13 down vote accepted

See pg 35 of "Drawing with Quartz" to see how to create a PDF Graphics Context.

Some notes:

"iPhoneOSNote: If you want to create a PDF graphics context in an iPhone application, make sure you also read “Drawing to a Graphics Context in iPhone OS” (page 27)."

"You can write any content to a PDF that’s appropriate for your application—images, text, path drawing—and you can add links and encryption. For more information see “PDF Document Creation, Viewing, and Transforming” (page 177)."

share|improve this answer

As an example of creating a PDF from the contents of a CALayer, you can refer to the -dataForPDFRepresentationOfLayer method within the CPLayer class in the Core Plot framework. You can do something similar to extract the content from a CALayer-backed UIView, although we had to subclass CALayer in order to get vector elements to render to a PDF properly.

share|improve this answer

Use a web service on a server back end to post the data to - then generate the PDF and return it to the browser/app with the correct mime type to open as a PDF.

ColdFusion could easily do this for you in just a few lines of code.

share|improve this answer
5  
Not much use if you don't have an active connection. – Abizern Aug 3 '10 at 19:30

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.