views:

493

answers:

1

Hi, Can I download a PDF file and shows it without use UIWebView? I need to show PDF and get full control of its show...

Also, Can I download and strore PDF into filesystem app?

Thx

+3  A: 

You can download a PDF the same way as you would download any other file, using an NSURLConnection or NSData's +dataWithContentsOfURL: method. This file will be stored within your application's sandboxed documents directory. Other applications on the filesystem will not have access to it.

As far as viewing the PDF without using UIWebView, this can be accomplished using CGPDFDocument, as described in the answers to this question.

Brad Larson