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!
I’m making an iOS app and I’d like to know if you can recreate
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
No,
CATransitionon iOS only provides cross-fading and a few variations of sliding animations.You will need to use either the
UIViewanimation methods (see “Animations” in the View Programming Guide for iOS) orCAAnimation(e.g.CABasicAnimation, see the Core Animation Programming Guide).In both cases, you’ll probably want to animate the
transformproperty of the view/layer.