Ryan Copley
Ryan Copley

Reputation: 873

UIStoryBoard Navigation Controller disappearing after segue

Reference layout via storyboard: https://i.sstatic.net/kQa10.png

Reference landing page: https://i.sstatic.net/X9sCo.png

I am trying to use the bottom bar as displayed in picture 2 to control my app. When I select my option on the first page (Such as the songs tab), but when I go to the next page my navigation bar at the bottom disappears. I am using segues to direct my applications view flow.

I have tried making various controllers subclassed to a UITabBarController & pushing as modal. Neither of those kept the navigation controller

Upvotes: 0

Views: 245

Answers (1)

rdelmar
rdelmar

Reputation: 104082

You shouldn't have that navigation controller as the initial controller, the tab bar controller should be first. Then, in each of the three tabs, the root view controller should be a navigation controller, followed by the ones you show in your image.

Upvotes: 2

Related Questions