tags:

views:

72

answers:

1

I am producing a magazine for a client for the iPad and they would to include PDF pages with internal links to videos/other pages etc.

Can this be done with the standard PDF controls etc?

+1  A: 

You would probably need to do such a thing with a UIWebview.

Yep, sure enough. After searching around on Google I found this - PDF Viewer Tutorial

And, note, if you are including a PDF file as a resource file you could this:

NSString *pdfPath = [[NSBundle mainBundle] pathForResource:@"pdfFileName" ofType:@".pdf"];
NSURL *pdfURL = [NSURL URLWithString:pdfPath];
David McGraw
Ah this looks about write I'll test and post confirmation
tigermain