-2

我有一个使用 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]];

  }

我找不到停止得分的方法++

有什么提示吗?

4

1 回答 1

0

试试这个

if (CGRectIntersectsRect(aliens.boundingBox, heroe.boundingBox)) {

heroe.visible = NO;

}
else{
if(heroe.visible == yes)
score++;

[scoreLabel setString: [NSString stringWithFormat:@"%i", score]];

}

于 2012-08-29T04:36:34.837 回答