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 tap), but without animation. I will ask that as a separate question though.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…