My app has a walkthrough at the start of it.
It is VC1 -> VC2 -> VC3 with custom segues between each VC.
The main view of my app is a series of view controllers with a navigation controller.
Nav Controller (root view of) -> VC4 (Main) -> VC5
The app delegate determines whether the initial view controller is VC1 or the Nav Controller
My question is how do I segue (or push) from VC3 to VC4 and then have the navigation controller work so I can push via the navigation controller to VC5? Once the app has segued to VC4 it will never need to go back to VC3.
The nav bar is hidden in the entire app.
Cheers,
Andy