tags:

views:

160

answers:

1

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?

+1  A: 

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.)

Ben Gottlieb