Search code examples
iosuinavigationcontrolleruitabbarcontrollerhideuitabbar

Hide Tabbar Controller Tabbar iOS issue


I have a tabbar controller with 3 tabs, each tab has navigation controller, on root view controller of each navigation controller i want tabbar and on other view controller in same navigation controller i dont want tabbar.

Any solution?


Solution

  • set self.tabBarController?.tabBar.isHidden = true in viewWillAppear method of your controller when you don't want tabbar

    override func viewWillAppear(_ animated: Bool) {
            self.tabBarController?.tabBar.isHidden = true
    }