gpt4 book ai didi

iPhone:为我的应用程序的特定区域添加 tabbarcontroller

转载 作者:行者123 更新时间:2023-11-29 13:35:22 25 4
gpt4 key购买 nike

我正在开发一个 iphone 应用程序,其中前四个屏幕是基于导航的

从第五个屏幕开始,设计更改为基于 Tabbar 的.在这个基于标签栏的部分中,我们能够导航每个标签上的 subview 。

我如何实现这个?

在哪里我在 appDelegate 或其他一些文件中声明标签栏 Controller ?

最佳答案

你可以在你的 app-delegate 类中添加观察者

[[NSNotificationCenter defaultCenter] addObserver:self 
selector:@selector(youMethod)
name:@"loginSucess"
object:nil];


- (void)youMethod
{
UINavigationController *controller = [[[UINavigationController alloc] initWithRootViewController:self.tabBarController] autorelease];


self.window.rootViewController = controller;
[self.window makeKeyAndVisible];
}

如果你想添加你的标签栏,你可以像这样调用

    [[NSNotificationCenter defaultCenter] postNotificationName:@"loginSucess" object:nil];

关于iPhone:为我的应用程序的特定区域添加 tabbarcontroller,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10713981/

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