You will probably need to do this with UIWebview.
Oh sure. After searching on Google I found this - PDF Viewer Tutorial
And, note that if you include a PDF file as a resource file, you can do this:
NSString *pdfPath = [[NSBundle mainBundle] pathForResource:@"pdfFileName" ofType:@".pdf"]; NSURL *pdfURL = [NSURL URLWithString:pdfPath];
source share