TabBars and iOS 7
Posted
by
MichaelScaria
on Stack Overflow
See other posts from Stack Overflow
or by MichaelScaria
Published on 2013-10-07T01:41:27Z
Indexed on
2013/11/02
3:54 UTC
Read the original article
Hit count: 171
I have a UITabbarController that I'm pushing another controller on top of using a UINavigationController. On iOS 6 and below, the tabBar of the parent controller slides away and the toolbar of the new view controller is presented. But on iOS 7 the tabBar doesn't animate away even if I run the code [self.navigationController setToolbarHidden:YES animated:NO];
EDIT - Okay I narrowed my problem to iOS 7 not respecting the hidesBottomBarWhenPushed
property, I followed the answers in hidesBottomBarWhenPushed ignored in iOS 7 but it didn't work. The view that is pushed has a toolbar with buttons and the buttons are responding to touches, it's just that the tabBar is on top of the toolbar.
© Stack Overflow or respective owner