I have a Tab bar controller with 2 items. The first item is a VC which contains a table view. Clicking on a cell, performs a segue to some other view controller (not an item
You need to embed your Item1VC
to NavigationController
so that when you push from ItemVC
to MoviesViewController
it will not remove the tabbar, if you doesn't embed the NavigationController
then it will push from the main ViewController
in your case it is TabbarController
so that you are not able to see the tabbar.