Reputation: 52484
This does not work
NSString *myPDF = @"file:///Users/sm/Documents/doc.pdf";
This works
NSString *myPDF = @"http://www.site.org/doc.pdf";
[[UIApplication sharedApplication] openURL:[NSURL URLWithString: myPDF]];
So should I create a web view and load the pdf on the web view?
Upvotes: 1
Views: 3553
Reputation: 33345
you might want to take a look at UIDocumentInteractionController
here is a tutorial
http://blog.objectgraph.com/index.php/2010/06/14/ipad-sdk-3-2-document-support-1/
Upvotes: 1