I have an issue with UIViewController#presentModalViewController being called twice. I have a modal view, and I trying to bring up another modal view, but the second time nothing happens. I suspect it’s hidden?
Anyone else ever do this?
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’t present two modal view controllers on the same parent controller. To show a second one, you should call presentModalViewController on your current modal controller (you may actually have to do it on a new UINavigationController, however, you CAN present a UINavigationController as a modal controller.)