This is how I switch from one UIView to another UIView: self.view = MyView;
How would I fade out a view to my MySecondView?
This is how I switch from one UIView to another UIView: self.view = MyView;
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.
You can use UIView’s build in transition code to cross dissolve between them.
You can also use the regular animation options with something like this. I haven’t tested this code as I’m not in front of Xcode but I use it all the time for labels and things without default animations.