gpt4 book ai didi

iphone - 导航堆栈中的某些 UIViewController 中未显示选项卡栏

转载 作者:行者123 更新时间:2023-11-29 04:12:36 25 4
gpt4 key购买 nike

我正在尝试创建一个基于导航的应用程序,在导航堆栈中具有三个 UIViewController 。我有一个底部栏(UITabBar)。

我想在第一个 UIViewController 被插入堆栈时隐藏选项卡栏,并且我想在第二个 UIVIewController 被插入堆栈时显示选项卡栏。

这是我为此编写的代码。

对于第一个UIVIewController:

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

对于第二个UIViewController我已经完成了:

NotificationBO *obj=[self.notificationsArray objectAtIndex:indexPath.row];
object.hidesBottomBarWhenPushed = NO;
[self.navigationController pushViewController:object animated:YES];
[object release];

现在的问题是,我可以为第一个 UIViewController 隐藏 UITabBar,但对于第二个 UIViewController,它也被隐藏。

我该如何解决这个问题?

最佳答案

而不是使用hidesBottomBarWhenPushed方法。尝试在 ViewController隐藏选项卡栏代码,例如

[self.tabBarController.tabBar setHidden:YES];

以及显示标签栏

[self.tabBarController.tabBar setHidden:NO];

上面的方法可以工作,但问题是它会在 viewController 底部留下一个空白。要解决这个问题,请将 frame 设置为 tabbarController

对于隐藏,设置

[self.tabBarController.tabBar setFrame:CGRectMake(0, 480, 320, 50)]

对于显示,设置

[self.tabBarController.tabBar setFrame:CGRectMake(0, 430, 320, 50)]

关于iphone - 导航堆栈中的某些 UIViewController 中未显示选项卡栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14196026/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com