Я реализовал свой собственный пользовательский tabBarController (который расширяет исходный UITabBarController ), потому что мне нужно программно переключать панели при определенных обстоятельствах (например, поворот устройства), это моя реализация (комментарии объясняют, как этоработает):
- (void)hideBottomBar:(BOOL)hide
{
@try
{
// UITabBarController has 2 subviews:
// - the first (index:0) is that one containing the active view controller's view
// - the second (index:1) is that one containing the UITabBar (self.tabBar)
UIView *topView = [self.view.subviews objectAtIndex:0];
UIView *bottomView = [self.view.subviews objectAtIndex:1];
// hide tabs container if necessary
[bottomView setHidden:hide];
// adjust frame
if (hide)
{
// expand main view to fit available space
[topView setFrame:self.view.bounds];
}
else
{
// restore main view frame
CGRect frame = topView.frame;
frame.size.height -= bottomView.frame.size.height;
[topView setFrame:frame];
}
}
@catch (NSException *exception)
{
[[GTMLogger sharedLogger] logError:@"Error occured adjusting tabs view: %@", exception.description];
}
}