本文介绍了如何使用PDF文件缩放WebView的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何放大UIWebView.
How to get zoom in UIWebView.
我从UIWebView中的资源包中加载了pdf文件.
I loaded pdf file from resource bundle in a UIWebView.
现在尝试缩放Web视图.因此它将对pdf文件具有缩放效果.
Now trying to zoom the webview. so its will get zooming effect to the pdf file.
所以
如何缩放UIWebView.
How can i zoom the UIWebView.
任何示例示例.请帮帮我.
Any sample example. Please help me out.
推荐答案
只需使用以下代码:
self.pdfviewwebview.scalesPageToFit = YES;
self.pdfviewwebview.autoresizingMask = (UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight);
self.pdfviewwebview.delegate = self;
在这里,大多数人忘记的最棘手的事情是设置Webview的委托,因此请注意这一点.
The most tricky thing here which most people forget is to set the webview's delegate,so take care about that.
这篇关于如何使用PDF文件缩放WebView的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!