I'm just starting to learn xcode and wondered, how do I reverse the flow of Navigation Controller? I have 1 TableViewController
and 1 ViewController
, and I want the ViewController
to appear first. Please help.
Instead of:
NavigationController >>> TableViewController >>> ViewController
I want it like this:
NavigationController >>> ViewController >>> TableViewController and back to ViewController
If your view hierarchy in storyboard is as: a:UITableViewController(A) embedded with UINavigationController. b:Now UIViewController(B) is comming from UITableViewController(A).