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?
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?
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];