使用此代碼來嘗試檢測兩個圖像之間的衝突,其中一個圖像處於動畫中,但不起作用。使用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");
}
}
如何檢測碰撞?
你的時間間隔是可笑的小(0.001秒)。它在代碼中看起來像鳥的位置是靜態的。貓是否在移動,你可以在貓動畫中進行檢查嗎? –
貓是動態的,而貓是靜態的。 –