我在资源包中的UIWebView中加载了一个PDF文件.
现在,我无法缩放/捏合PDF文件.
> How to zoom webView with pdf file
> Enable zooming/pinch on UIWebView
如何使从资源包中加载到UIWebView中的PDF可缩放/可变形,以下解决方案是否有效?
> Problem with pdf while opening in UIWebView
谢谢你的帮助.
解决方法
在Interface Builder上的WebView中添加检查以缩放页面以适合您并启用Pinch ZoomIn ZoomOut;)
或者,如果你想更好地PDF,请尝试查看此代码:
- (void)viewDidLoad { [super viewDidLoad]; [webView loadRequest:[NSURLRequest requestWithURL:@"http:pdfURL"]]; NSString *path = [[NSBundle mainBundle] pathForResource:@"yourPDFFile" ofType:@"pdf"]; NSURL *url = [NSURL fileURLWithPath:path]; NSURLRequest * request = [NSURLRequest requestWithURL:url]; [webView loadRequest:request]; //--------------AND HERE USE SCALE PAGE TO FIT------------------// [webView setScalesPageToFit:YES]; }
希望这对你有所帮助.