In an application built on top of Three20, how can I detect, after a new view is pushed, when the transition ends?
If I use viewDidLoad, it’s call when the view is loaded into memory, but the transition may has not started yet.
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.
If you’ve used UIView animation methods (pre-iOS4), you can use
+setAnimationDidStopSelector:or if you’ve used the new block-based animation methods, you can use any of the methods that allow you to set a completion handler like this.