Reputation: 4409
I am navigating from TabBarController to another UIViewController.
aViewController.title = @"Product Name";
[self.tabBarController.navigationController pushViewController:aViewController animated:YES];
after navigating from the tabbar is not visible.
So change code
[self.navigationController pushViewController:aViewController animated:YES];
TabBar is visible but < Back button is not visible.
How to have tabbar and the default back button after navigating from tabbar?
Upvotes: 0
Views: 31
Reputation: 11643
I've just created a test project for this issue and you will see that it's working as expected. https://github.com/Pei116/TabTest-iOS
Upvotes: 2