I added tabBarto my application and removed rightBarButtonItemwith the code:
UITableView *moreTableView = (UITableView *)tabController.moreNavigationController.topViewController.view;
tabController.moreNavigationController.navigationBar.topItem.rightBarButtonItem = nil;
Now when I switch to another screen and press the button More tabBar, it will appear again rightBarButtonItem. If I use the reverse navigation button, it does not appear and works fine. However, when I press the button Moreon the tabBar, it appears again.
source
share