Currently I'm using Unwind to get to the Main View of its Path.
This is the code I've on the Sender ViewController:
- (IBAction)showRecents:(UIStoryboardSegue *)segue {
[self.navigationController.tabBarController setSelectedIndex:1];
NSLog(@"Root of Navigation Executed");
}
This is how it looks before unwinding
And this is how it looks after unwinding from the source view controller:
The issue is that I don't understand why it's not showing the Green TopBar? Has something to do with the TabBarController?
This is my Path VC: