Reputation: 6120
I'm making an iOS app and I'd like to know if you can recreate the animation that occurs when you open an iOS app from the Springboard using CATransition
. Thanks!
Upvotes: 1
Views: 501
Reputation: 53551
No, CATransition
on iOS only provides cross-fading and a few variations of sliding animations.
You will need to use either the UIView
animation methods (see "Animations" in the View Programming Guide for iOS) or CAAnimation
(e.g. CABasicAnimation
, see the Core Animation Programming Guide).
In both cases, you'll probably want to animate the transform
property of the view/layer.
Upvotes: 4