BigAppleBump
BigAppleBump

Reputation: 1096

Animate Text in iOS

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

Answers (1)

Michael Mangold
Michael Mangold

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

Related Questions