美文网首页
利用UIWebView显示pdf文件,网页

利用UIWebView显示pdf文件,网页

作者: iOS菜鸟攻城狮 | 来源:发表于2017-05-09 17:34 被阅读73次

UIWebView *webView = [[UIWebView alloc]initWithFrame:self.view.bounds];

webView.delegate = self; webView.scalesPageToFit = YES;

webView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;

[webView setAllowsInlineMediaPlayback:YES];

[self.view addSubview:webView];

NSString *pdfPath = [[NSBundle mainBundle] pathForResource:@"book" ofType:@"pdf"]; NSURL *url = [NSURL fileURLWithPath:pdfPath];

NSURLRequest *request = [NSURLRequest requestWithURL:url cachePolicy:(NSURLRequestUseProtocolCachePolicy) timeoutInterval:5];

相关文章

网友评论

      本文标题:利用UIWebView显示pdf文件,网页

      本文链接:https://www.haomeiwen.com/subject/hgritxtx.html