UIWebView 覆盖滑动手势
我有一个 UIWebView,它加载一个捕获左/右滑动手势的页面。因此,所有滑动手势都被 UIWebView 吞噬,这意味着这些手势在我的应用程序中不起作用。
我该如何:
防止 UIWebView 吃左/右手势,但仍处理所有其他事件(例如向上/向下滑动滚动)
将两指滑动作为单指滑动传递到 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:
Prevent the UIWebView from eating the left/right gestures, but still process all other events (such as swipe up/down to scroll)
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
它为您提供一系列手势识别器,从这里您应该能够删除或更改手势识别器的操作。
you can use
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.