Is their a way to use a full page curl to present a UIViewController?
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.
I’m assuming you mean using the
UIViewController presentModalViewController:animated:method. There’s not a vanilla way to use a full page curl with this method.However, you can still use the
UIView transitionFromView:toView:duration:options:completion:class method (or pre-iOS 4 equivalent methods) to get the desired effect. I’ll leave the modal view’s dismissal and memory management up to you, but your presentation can be handled similarly to this: