gpt4 book ai didi

iphone - 如何隐藏或删除 UINavigationController?

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

我想访问 UINavigationController 提供的所有功能。在我的应用程序中,我需要从我的 FirstViewController 中删除/隐藏 UINavigationController 。当我的 FirstViewController 将显示时,UINavigationController 不会显示,而 FirstViewController 有 UITableView。我可以从 UITableView 中选择行并显示另一个 UIViewController,然后显示 UINavigationController,然后我可以通过 UINavigationController 返回。

我该怎么做?

最佳答案

是的,你可以做到。您需要隐藏navigationControllernavigationBar。这样,navigationController 就完全隐藏了,但您仍然可以访问它来推送和弹出 viewController。

self.navigationController    = [[UINavigationController alloc] init];
[self.navigationController setNavigationBarHidden:YES animated:NO];


SomeViewController *sVC = [[[SomeViewController alloc] initWithNibName:@"SomeViewController" bundle:nil] autorelease];
[self.navigationController pushViewController:sVC animated:NO];

关于iphone - 如何隐藏或删除 UINavigationController?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12299674/

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