Created
November 16, 2012 16:32
-
-
Save jeksys/4088742 to your computer and use it in GitHub Desktop.
webView PDF
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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