gpt4 book ai didi

iphone - 如何在标签栏中安装 NavigationController 作为 Root View ?

转载 作者:行者123 更新时间:2023-12-01 19:29:02 26 4
gpt4 key购买 nike

如何在标签栏 View 中安装 NavigationController 作为 Root View ?

在我的 applicaton:didFinishLaunchingWithOptions: 方法中,我创建了一个标签栏界面,将窗口的 rootViewController 设置为 tabBarController。

现在,在我的一个标签栏 View 中,我想在顶部添加一个导航栏。我怎样才能做到这一点?

我应该继承导航 Controller 吗?

谢谢

最佳答案

听起来你是在代码中做的,而不是 IB,所以这就是你可以做的。

// First create your RootViewController:
UIViewController *rootViewController = [[UIViewController alloc] init];
// Then add the rootViewController to a UINavigationController
UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:rootViewController];
// Now your RootViewController is a UINavigationController
// Add it to your UITabBarController
[tabBarController.viewControllers addObject:navigationController];
// You can now get rid of the RootViewController and UINavigationController
[rootViewController release];
[navigationController release];

关于iphone - 如何在标签栏中安装 NavigationController 作为 Root View ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4084264/

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