如何仅从 iPhone 应用程序中禁用 UIwebView 的水平滚动?
我正在制作一个iPhone应用程序,需要制作一个只能垂直滚动的UIwebview(我需要禁用水平滚动),我无法真正从网站上做到这一点,因为这不在我的控制范围内。如何实施?
I am making a iPhone app that needs to make a UIwebview that can only scroll vertically(I need to disable to the horizontal scrolling), I can't really do it from the website because that's not in my control. How to implement that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过在 HTML 部分中添加以下内容来完成此操作:
在将文件加载到 Web 视图之前或使用
stringByEvaluatingJavaScriptFromString:
执行此操作You can do this by adding the following in the section of your HTML:
Do this either before you load the file into the web view or use
stringByEvaluatingJavaScriptFromString: