使用UIAnimation检测碰撞

时间:2013-07-18 22:18:29

标签: objective-c collision uianimation

我正在使用此代码尝试检测两个图像之间的碰撞,其中一个是动画,但它不起作用。

[UIView animateWithDuration:5 animations:^{
        bird.center = CGPointMake(bird.center.x, 600);
        fallTimer = [NSTimer scheduledTimerWithTimeInterval:.001 target:self selector:@selector(check) userInfo:nil repeats:YES];
    }];

-(void)check {
    if (CGRectIntersectsRect(bird.frame, cat.frame)) {
        NSLog(@"YES");
    }
}

我如何检测碰撞?

1 个答案:

答案 0 :(得分:0)

在动画制作时,您无法使用视图的框架,返回的值也不准确。相反,您应该能够从视图presentationLayer获取layer并检查其框架。