如何仅从 iPhone 应用程序中禁用 UIwebView 的水平滚动?

发布于 2024-11-26 19:40:50 字数 92 浏览 0 评论 0原文

我正在制作一个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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一页 2024-12-03 19:40:50

您可以通过在 HTML 部分中添加以下内容来完成此操作:

<meta name="viewport" content="width=device-width" />

在将文件加载到 Web 视图之前或使用 stringByEvaluatingJavaScriptFromString: 执行此操作

You can do this by adding the following in the section of your HTML:

<meta name="viewport" content="width=device-width" />

Do this either before you load the file into the web view or use stringByEvaluatingJavaScriptFromString:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文