tabbar工具栏隐藏

1.我做团购demo底下有个tabbar
clipboard.png
2.当我点击某一行团购时,弹出详情页面。需求是在详情页面,把底下的tabbar隐藏
3.隐藏的代码是
self.hidesBottomBarWhenPushed = YES

问题:不知道在什么时机加入这个代码。从详情页面点击导航栏返回时,需要显示tabbar

注:用present推出可以自动的隐藏tabbar , 这里想知道用push怎么做。

阅读 2.5k
1 个回答

在你调用 pushViewController 的时候做。如下:

- (void)goToDetailPage {
    UIViewController *detailViewController = [[UIViewController alloc] init];
    detailViewController.hidesBottomBarWhenPushed = YES;
    [self.navigationController pushViewController:detailViewController animated:YES];
}
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
宣传栏