Is it possible to skip a view in a Navigation Controller? My structure is as follows:
**Main Screen Navigation Controller**
-Main Screen View
**Options Navigation Controller (Modal transition from Main Screen View)**
-Options Screen View
--Sub Options Screen View(Push from Options View)
On the first load of the application, I want to present a “Welcome” UIAlertView that will present the “Sub Options” screen.
Thanks
You’ll have to build your navigation stack programmatically and then modally display the
UINavigationController. Use theviewControllersproperty. The last view controller in the passed in array will become the top view controller.