Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to display a PDF in Objective-C? [closed]

Tags:

How to read and display PDF in Objective-C?

like image 654
meoden8x Avatar asked Jun 16 '11 09:06

meoden8x


2 Answers

If you just want to display it, the easiest way is to load it in a UIWebView.

like image 143
Morten Fast Avatar answered Oct 29 '22 10:10

Morten Fast


If you want to solely read and display PDFs to users, as the Mail app does on your iOS device with all the scrolling and zooming done for you, then I would use a UIDocumentInteractionController.

http://developer.apple.com/library/ios/#documentation/uikit/reference/UIDocumentInteractionController_class/Reference/Reference.html

You'll find some useful code in one of my recent questions, here:

UIDocumentInteractionController crashing upon exit

Hope this helps.

like image 24
Luke Avatar answered Oct 29 '22 11:10

Luke