Reputation: 1096
Have anybody experiencing in animating text or characters ? Is it possible to animate characters from the left to right ? In my App i have three dots and i want to animate one by one.
Upvotes: 1
Views: 488
Reputation: 1801
The UILabel class inherits from UIView and can be implicitly animated using animateable properties such as frame, center and bounds. This means that simply changing these properties results in an animation.
Upvotes: 4