两个 imageView 碰撞计数器的问题

发布于 2024-12-05 16:30:08 字数 935 浏览 1 评论 0原文

这是我的代码:

-(void)moveTheImage{
for (NSUInteger i = 0; i < [views count]; i++) {
    imageView = [views objectAtIndex:i];
    X = [[XArray objectAtIndex:i] floatValue];
    Y = [[YArray objectAtIndex:i] floatValue];
imageView.center=CGPointMake(imageView.center.x + X, imageView.center.y + Y);
    [self interaction];

}

}

-(void)interaction{
if(!intersectFlag)
{   



    if(CGRectIntersectsRect(imageView.frame,centre.frame))    
    {
        intersectFlag = YES;    
        label.text= [NSString stringWithFormat:@"%d", counti];
        [imageView removeFromSuperview];
        ++counti;
    }
}
else
{
    if(!CGRectIntersectsRect(imageView.frame,centre.frame))
    {
        intersectFlag = NO;
    }
}

} 我希望每次“imageView”和“center”之间发生碰撞时计数都会增加 1,但我的问题是计数增加太多,更确切地说,“center”中的“imageView”的计数会增加,然后当它不发生碰撞时,计数就会增加触摸“中心”计数器就会停止。请问我该如何解决这个问题?抱歉我的英语我是法国人:/

here is my code:

-(void)moveTheImage{
for (NSUInteger i = 0; i < [views count]; i++) {
    imageView = [views objectAtIndex:i];
    X = [[XArray objectAtIndex:i] floatValue];
    Y = [[YArray objectAtIndex:i] floatValue];
imageView.center=CGPointMake(imageView.center.x + X, imageView.center.y + Y);
    [self interaction];

}

}

-(void)interaction{
if(!intersectFlag)
{   



    if(CGRectIntersectsRect(imageView.frame,centre.frame))    
    {
        intersectFlag = YES;    
        label.text= [NSString stringWithFormat:@"%d", counti];
        [imageView removeFromSuperview];
        ++counti;
    }
}
else
{
    if(!CGRectIntersectsRect(imageView.frame,centre.frame))
    {
        intersectFlag = NO;
    }
}

}
I want that the count increase of 1 every time there is a collision between "imageView" and "centre" but my problem is that the count increase too much,more exactly it increase for "imageView" in "centre" then when it doesn't touch "centre" the counter stops.How can I solve this please ? sorry for my english I'm french :/

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

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

发布评论

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

评论(1

软糯酥胸 2024-12-12 16:30:08

如果“intersectFlag”标记单个 imageView 对象的状态,那么它应该是该对象的成员,而不是在所有 imageView 之间共享。

If "intersectFlag" marks the state of a single imageView object then it should be a member of that object and not shared between all imageViews.

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