When the user gets coins or uses coins I'd like them to experience their coins being minus-ed live (-) for example instead of the label displaying {score = score -10} and all of a sudden 10 points disappear:
instead they should see the points being deducted in an animated way 50 - 49 - 48 - 47 - 46 and so on till 10 points are fully minus-ed.
code:
[scoreLabel setText:[NSString stringWithFormat:@"score: %d", score]];
code: for e.g: - 100 | - 10 | +3 | +5
for (int i = 1; i<= 10; i++) { NSLog (@“%d”, i);