UIWebView 覆盖滑动手势

发布于 2025-01-03 08:16:32 字数 253 浏览 0 评论 0原文

我有一个 UIWebView,它加载一个捕获左/右滑动手势的页面。因此,所有滑动手势都被 UIWebView 吞噬,这意味着这些手势在我的应用程序中不起作用。

我该如何:

  1. 防止 UIWebView 吃左/右手势,但仍处理所有其他事件(例如向上/向下滑动滚动)

  2. 将两指滑动作为单指滑动传递到 UIWebView。

即使(1)是可能的,那就太好了!

谢谢!

I have a UIWebView that loads a page that captures left/right swipe gestures. So all swipe gestures are eaten up by the UIWebView, meaning that these gestures do not work within my app.

How do I:

  1. Prevent the UIWebView from eating the left/right gestures, but still process all other events (such as swipe up/down to scroll)

  2. Pass a two-finger swipe through to the UIWebView as a one-finger swipe.

Even if (1) is possible, that would be excellent!

Thanks!

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

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

发布评论

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

评论(1

债姬 2025-01-10 08:16:32

您可以使用

[self.view gestureRecognizers] 

它为您提供一系列手势识别器,从这里您应该能够删除或更改手势识别器的操作。

you can use

[self.view gestureRecognizers] 

this will give you an array of the gesture recognisers from here you should be able to remove or change the action of the gesture recogniser.

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