How do I hide/show tabBar when tapped using Swift in iOS8
问题 I am trying to mimic the UINavigationController's new hidesBarsOnTap with a tab bar. I have seen many answers to this that either point to setting the hidesBottomBarWhenPushed on a viewController which only hides it entirely and not when tapped. @IBAction func tapped(sender: AnyObject) { // what goes here to show/hide the tabBar ??? } thanks in advance EDIT: as per the suggestion below I tried self.tabBarController?.tabBar.hidden = true which does indeed hide the tabBar (toggles true/false on