gpt4 book ai didi

iphone - 在景观中隐藏选项卡栏而不推送到 NavigationController

转载 作者:行者123 更新时间:2023-12-03 20:15:05 26 4
gpt4 key购买 nike

我想在横向显示另一个没有选项卡栏的 View 。所以我创建了一个新 View ,只更改 self.view

self.hidesBottomBarWhenPushed = YES;

但这对我不起作用。希望有人能帮忙吗?

最佳答案

只需在 View 的 viewWillAppear: 方法中添加此行即可隐藏 UITabBar

[self.tabBarController.tabBar setHidden:YES];

并将新 View 设置为 RootViewController 只需使用下面的代码...

YourNewViewController *objView = [[YourNewViewController alloc] initWithNibName:@"YourNewViewController" bundle:nil];
UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:objView];
[self presentModalViewController:nav animated:YES];

关于iphone - 在景观中隐藏选项卡栏而不推送到 NavigationController,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13839038/

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