如何在iOS中使用导航栏隐藏/显示视图的标签栏?

时间:2011-06-17 08:12:20

标签: ios uinavigationcontroller uitabbarcontroller

我有导航栏和标签栏的视图。我想要发生的是隐藏某个视图上的标签栏,并在用户更改视图时再次显示标签栏。

我看到一段用于隐藏标签栏的代码:

-(void)makeTabBarHidden:(BOOL)hide
{
    // Custom code to hide TabBar
    if ( [tabBarController.view.subviews count] < 2 ) {
        return;
    }

    UIView *contentView;

    if ( [[tabBarController.view.subviews objectAtIndex:0] isKindOfClass:[UITabBar class]] ) {
        contentView = [tabBarController.view.subviews objectAtIndex:1];
    } else {
        contentView = [tabBarController.view.subviews objectAtIndex:0];
    }

    if (hide) {
        contentView.frame = tabBarController.view.bounds;       
    }
    else {
        contentView.frame = CGRectMake(tabBarController.view.bounds.origin.x,
             tabBarController.view.bounds.origin.y,
             tabBarController.view.bounds.size.width,
             tabBarController.view.bounds.size.height - tabBarController.tabBar.frame.size.height);
    }

    tabBarController.tabBar.hidden = hide;
}

来自:http://nickwaynik.com/iphone/hide-tabbar-in-an-ios-app/

我在视图中调用它,其中我想隐藏标签栏

[self makeTabBarHidden:YES];

当我在该视图上显示/隐藏它时它工作正常但当我导航回到上一个视图时,那里的标签栏也被隐藏了。我尝试在视图的viewDidUnloadviewWillDisappearviewDidDisappear函数中调用该函数,但没有任何反应。在上一个视图的viewDidLoadviewWillAppearviewDidAppear函数中调用函数时也是如此。

8 个答案:

答案 0 :(得分:144)

您可以设置UIViewController.hidesBottomBarWhenPushed:

DetailViewController *detailViewController = [[DetailViewController alloc] init];
detailViewController.hidesBottomBarWhenPushed = YES;
[[self navigationController] pushViewController:detailViewController animated:YES];    
[detailViewController release];

答案 1 :(得分:35)

您也可以在Interface Builder中为故事板执行此操作。选择要隐藏选项卡栏的视图控制器,然后选择“在推送时隐藏底栏”。

enter image description here

答案 2 :(得分:13)

我刚刚在UITabBarController上创建了一个类别,允许你隐藏TabBar,可选择带动画:

https://github.com/idevsoftware/Cocoa-Touch-Additions/tree/master/UITabBarController_setHidden

它添加了tabBarHidden属性(isTabBarHidden作为其getter)和- (void)setTabBarHidden:(BOOL)hidden animated:(BOOL)animated方法。

答案 3 :(得分:2)

self.navigationController.hidesBottomBarWhenPushed=YES;

将此行添加到viewdidloadviewWillAppear 这会从底部隐藏你的标签。

答案 4 :(得分:2)

尝试隐藏/显示;

-(void)viewWillDisappear:(BOOL)animated{
    self.hidesBottomBarWhenPushed = NO;
}
-(void)viewWillAppear:(BOOL)animated{
    self.hidesBottomBarWhenPushed = YES;
}

答案 5 :(得分:1)

斯威夫特3: 在tabwillAppear或viewdidappear中设置标签栏隐藏

self.tabBarController?.tabBar.isHidden = true

答案 6 :(得分:0)

单击Xib或情节提要文件上的视图控制器时,属性检查器上可以使用相同的属性。

答案 7 :(得分:0)

您可以使用以下代码,但导航回来时tabBar仍然隐藏。

    //hide tabbar
    //self.tabBarController?.tabBar.isHidden = true

更好的方式是通过main.storyboard完成的 我已经完成了"Hide Bottom Bar on Push"

enter image description here