我正在使用此代码尝试检测两个图像之间的碰撞,其中一个是动画,但它不起作用。
[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");
}
}
我如何检测碰撞?
答案 0 :(得分:0)
在动画制作时,您无法使用视图的框架,返回的值也不准确。相反,您应该能够从视图presentationLayer
获取layer
并检查其框架。