-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 に答える