Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的应用程序中有一个 uiwebview。到目前为止一切正常,但是当我放大或缩小时,例如 uiwebview 会刷新加载的页面,然后滚动并缩放到新的页面位置和大小。所以缩放效果很好,但我不希望用户看到网站的刷新和重新定位。
有没有办法防止这种情况?
感谢您的任何提示!
这可能是因为您可能以一种奇怪的方式对缩放进行了编码。您可以尝试删除所有缩放代码,并以与 webView loadRequest 相同的方法键入:
self.webView.scalesPageToFit = YES
希望这可以帮助。
您应该动态刷新页面,而不是通过 webview 刷新它。您可以通过使用 AJAX 或检索 Objective C 中的内容并使用stringByEvaluatingJavaScriptFromString:.
stringByEvaluatingJavaScriptFromString: