Need to make a “score board” like UILabel. When the view is displayed to the user the UILabel to start at 0 then do an incremental update until it gets to a stored value. Would like to control how fast the UILabel updates as well.
So for example:
label starts with 0, then displays 1, next 2, 3, 4, etc… until it gets to 20.
You can use a repeating NSTimer and a counter to achieve this: