I’ve got an UILabel that displays users score. And score changes from time to time, is there a way to animate this change, to slowly increment this number from its current value to its result value?
Something like http://josheinstein.com/blog/index.php/2010/02/silverlight-animated-turbotax-number-display/ but for objective-c.
I’ve got an UILabel that displays users score. And score changes from time to
Share
Use a CADisplayLink to change the text property of custom subclass of UILabel over some period of time. You’ll probably want to use a
NSNumberFormatterfor prettier output.