Skip to content

Instantly share code, notes, and snippets.

@jeksys
Created November 16, 2012 16:32
Show Gist options
  • Save jeksys/4088742 to your computer and use it in GitHub Desktop.
Save jeksys/4088742 to your computer and use it in GitHub Desktop.
webView PDF
NSString *path = [[NSBundle mainBundle] pathForResource:@"document" ofType:@"pdf"];
NSURL *targetURL = [NSURL fileURLWithPath:path];
NSURLRequest *request = [NSURLRequest requestWithURL:targetURL];
[webView loadRequest:request];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment