如何以编程方式滚动 Swift webview

发布于 2025-01-09 03:49:36 字数 144 浏览 0 评论 0原文

UIWebView 类的哪些方法可用于以编程方式滚动?代表中有吗?另外,UIScrollView 之外还存在哪些方法? 请原谅那些咄咄逼人的问题。如果您有任何超出我的参数的建议,请告诉我。 另外,请不要给出 SwiftUI 答案。我想在 UIKit 中做所有的事情。 谢谢。

What methods of the UIWebView class can be used to scroll programmatically? Are there any in the delegate? Also, what methods exist outside of the UIScrollView?
Pardon the pushy questions. If you have any suggestions outside of my parameters, please tell me.
Also, please dont give SwiftUI answers. I want to do everything in UIKit.
Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

み青杉依旧 2025-01-16 03:49:36

UIWebView 可用于支持遗留系统。如果您不打算支持旧版本,您应该更喜欢使用 WKWebView。

使用 WKWebView,您可以通过以下方式启用滚动:

webview.scrollView.scrollEnabled = TRUE;

UIWebView can be used to support legacy systems. You should prefer using WKWebView if you are not aiming to support older versions.

With WKWebView, you could enable scroll in the following manner:

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