如何将 UITapGestureRecognizer 添加到 UIWebView 中?

发布于 2024-11-05 18:14:35 字数 100 浏览 0 评论 0原文

我正在尝试使用大 UIWebView 将 UITapGestureRecognizer 添加到我的视图中,但仅当用户点击不在 UIWebView 中时才有效。我该如何解决这个问题?谢谢。

I'm trying to add UITapGestureRecognizer to my view with big UIWebView, but in works only if user tap not in UIWebView. How can I fix this? Thank you.

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

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

发布评论

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

评论(2

梨涡 2024-11-12 18:14:35

您可以通过实施此方法来实现这一点

- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer*)otherGestureRecognizer {
    return YES;
}

You can achieve this by implementing this method

- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer*)otherGestureRecognizer {
    return YES;
}
安穩 2024-11-12 18:14:35

UIWebView 有它自己的用于打开链接等的点击处理,因此它不处理“您的”触摸。您应该子类化 WebView 并覆盖点击处理。很好的例子这里

UIWebView has it's own tap handling for opening links etc., therefor it doesn't handle "your" touches. You should subclass WebView and override tap handling. Good example here.

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