I have an issue with a tab bar app. I am making a tab bar app with three bars on the bottom. On my my first bar it is a tableviewcontroller. When i ckick on the table view controller it takes me to a different view (which doesn’t have the tab bar). When I clicked back to the home screen (which has the tab) the tab bar is gone.If you need a picture i will post it!
Share
You may have set your
UITableViewControllersegue to a modal style. If this is the case, you should change it to a push style.In order for a push to work, your view controller needs to be in a
UINavigationController. In your story board, select your root view controller and embed it into a Navigation Controller like this…