I'm trying to create a score using a CCLabelTTF to show the score on the screen. But I would display the score scrolling numbers until they arrive at the final score. I make this in update method :
if(currentScore < finalScore)
{
currentScore ++;
[labelScore setString:[NSString stringWithFormat:@"%d", currentScore]];
}
This is perfect when I have small scores but when I have a big number like 10.000 I have to wait a lot for seeing the final score. How can I solve this?