I’m looking to create an application with a menu that loads a tabbed application, but can also load another separate view application. I’m kind of confused how you could get a standard view to load as a menu and then have one of your menu button IBaction’s call up a whole other “application,” for lack of a better word.
To make things more clear, I want to do this:
- Load menu
- If user pushes the option for the tabbed app, that app opens
- If users pushes the option for the single view app, it opens
Am I missing something really obvious?
You seem to be using the term application to mean a
ViewController. If that is the case, you can use the initial view controller and callpresentModalViewControllerto show the second ViewControllers. Some pseudocode in your “Menu” ViewController:Those methods would be the
IBActionhandlers hooked up to the controls in your “Menu.”