August 2013
Intermediate to advanced
356 pages
9h 54m
English
If you want something done right, do it yourself.
Charles-Guillaume Étienne
The previous chapter introduced the concept of implicit animations. Implicit animations are a straightforward way to create animated user interfaces on iOS, and they are the mechanism on which UIKit’s own animation methods are based, but they are not a completely general-purpose animation solution. In this chapter, we will look at explicit animations, which allow us to specify custom animations for particular properties or create nonlinear animations, such as a movement along an arbitrary curve.
The first type of explicit animation we will look at is the property animation. Property animations target a single property of a layer ...