Guest User

Untitled

a guest
May 17th, 2018
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  levelMsg = [NSString stringWithFormat:@"Level %i \n Spawn rate: %0.2f Enemy HP: %i",
  2.                 delegate.curLevelIndex+1, delegate.curLevel.spawnRate, delegate.curLevel.enemyHP];
  3.  
  4. //this stops the msg from displaying as well:
  5.  
  6. levelMsg = [NSString stringWithFormat:@"Level %i \n"
  7. " Spawn rate: %0.2f Enemy HP: %i",
  8.                 delegate.curLevelIndex+1, delegate.curLevel.spawnRate, delegate.curLevel.enemyHP];
Add Comment
Please, Sign In to add comment