I really need to make a UIWebView open up a specific PDF document that is in my project directory. I can\'t seem to find any tutorials on this. I found one, but the author
Use pathForResource and fileURLWithPath:
NSString *path = [[NSBundle mainBundle] pathForResource:@"FileNameHere" ofType:@"pdf"]; NSURL *url = [NSURL fileURLWithPath:path]; NSURLRequest *request = [NSURLRequest requestWithURL:url]; [webView loadRequest:request];