Possible Duplicate:
Fast and Lean PDF Viewer for iPhone / iPad / iOs – tips and hints?
Can anyone please point me the right direction. I want to be able to view pdf files on the iPhone and I don’t no how to do this. So any tutorials would be great.
I have already done it in a UIwebView. But i am wanting to be able to ‘Go to page’, ‘Print’ and ‘Email file’ can this be done in a UIWebView? if not that’s when I want to have the tutorials.
As already pointed you can display pdf files in standard UIWebView control. Also iOS supports PDF rendering with quartz functions (e.g. see
CGPDF...family of functions andCGContextDrawPDFPagefunction)You can also check this sample to see how to draw PDF using those functions.