独占触摸不适用于 UIView 和 UIView 上作为子视图的多个图像视图

发布于 2024-10-11 07:54:25 字数 170 浏览 2 评论 0原文

我有一个 UIView 和几个图像视图作为 UIView 上的子视图。我需要实现这种情况,“当图像视图在视图上被触摸时,其他图像视图触摸事件将不会传递”。

我使用了UIView独有的触摸属性,但是当我触摸其中一个子视图时,我同时触摸了,其他子视图的触摸事件也传递了触摸事件。 我还为所有视图设置了多点触摸禁用。

I have a UIView and several image Views as subview views on UIView. I need to implement this case, "When a image view is touched on the view then other image view touch event will not delivered".

I use the exclusive touch property to the UIView, but when I touch one of the subviews, I touched at the same time, the touch event of the other subviews also deliver the touch event.
I also set multi touch disable for all the views.

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

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

发布评论

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

评论(1

丘比特射中我 2024-10-18 07:54:25
for (UITouch *touch in touches)
{
    currentTouch=touch;

    if (CGRectContainsPoint([self.view frame], [touch locationInView:self.image1view]))
    {
        Give desired action here….
        [self transformSpinnerwithTouches:touch];
    }
    else
        if (GRectContainsPoint([self.view frame], [touch locationInView:self.imageview2]))
        {
            Give desired action here as well….
            [self dispatchTouchEvent:[touch view]WithTouch:touch];
        }
}
for (UITouch *touch in touches)
{
    currentTouch=touch;

    if (CGRectContainsPoint([self.view frame], [touch locationInView:self.image1view]))
    {
        Give desired action here….
        [self transformSpinnerwithTouches:touch];
    }
    else
        if (GRectContainsPoint([self.view frame], [touch locationInView:self.imageview2]))
        {
            Give desired action here as well….
            [self dispatchTouchEvent:[touch view]WithTouch:touch];
        }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文