将 touchEvent 发送到 backView 以便在 tableView 中滚动时出现问题

发布于 2024-10-11 15:41:17 字数 343 浏览 3 评论 0原文

我的问题是我有一个 ScrollView,而后面我有 TableView 的其他视图。 我拦截 ScrollView 中的触摸并发送 touchBegan、touchMoved、touchEnded 和 touchCancel

[tableView TouchsXXXXXX:motion withEvent:event]; (XXXX 是开始,移动,...)

这些用于检测触摸,我可以选择后面的 tableView 中的行,但我的问题是无法在后面的 tableView 中滚动。如何发送触摸事件以在 tableView 上滚动?因为将 touchMoved 事件发送到 tableView 不会进行滚动。

感谢您的帮助!

My problem is that I have a ScrollView and back I have other view with TableView.
I intercept the touch in the ScrollView and send the touchBegan, touchMoved, touchEnded and touchCancel

[tableView touchesXXXXXX:motion withEvent:event]; (XXXX is Began, Moved, ...)

These work for detect touchs, and I can select the row in the back tableView, but my problem is that can't make scroll in back tableView. How I can send the touch event for make scroll on tableView? Because sending the touchMoved event to tableView don't make scroll.

Thanks for your help!

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

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

发布评论

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

评论(1

谁把谁当真 2024-10-18 15:41:17

重要:您不应在 UIScrollView 对象中嵌入 UIWebView 或 UITableView 对象。如果这样做,可能会导致意外行为,因为两个对象的触摸事件可能会混淆并错误处理。

来自 UISCrollView 文档

Important: You should not embed UIWebView or UITableView objects in UIScrollView objects. If you do so, unexpected behavior can result because touch events for the two objects can be mixed up and wrongly handled.

From UISCrollView docs

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