我有一个使用 if 语句的分数计数器
if (CGRectIntersectsRect(aliens.boundingBox, heroe.boundingBox)) {
heroe.visible = NO;
//HOW DO I STOP THE SCORE++ HERE?
}
else {
score++;
[scoreLabel setString: [NSString stringWithFormat:@"%i", score]];
}
我找不到停止得分的方法++
有什么提示吗?