iOS:WebView 加载PDF文件

Loading a local PDF file into the iOS web view

http://gssdaily.com/forum/viewtopic.php?f=20&t=1958

by steave » Sat Jul 02, 2011 5:16 pm

Loading a local PDF file into the iOS web view

Code: Select all
- (void)viewDidLoad {

    [super viewDidLoad];

 

    NSString *thePath = [[NSBundle mainBundle] pathForResource:@"iPhone_User_Guide" ofType:@"pdf"];

    if (thePath) {

        NSData *pdfData = [NSData dataWithContentsOfFile:thePath];

        [(UIWebView *)self.view loadData:pdfData MIMEType:@"application/pdf"

你可能感兴趣的:(iOS:WebView 加载PDF文件)