gpt4 book ai didi

iphone - 如何将多个相同实例的 Controller 添加到我的 tabBarController?

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:47:42 27 4
gpt4 key购买 nike

我想向我的 tabBarController 添加多个相同实例的 Controller 。但我不能。添加的数组 Controller 被视为一个 Controller 。我应该怎么做??最好的方法是什么?这是我的代码。

RootViewController *rootViewController = [[[RootViewController alloc]init]autorelease];
tabBarController = [[[UITabBarController alloc]init]autorelease];
[tabBarController setDelegate:self];
[tabBarController setViewControllers:[NSArray arrayWithObjects:rootViewController,rootViewController,rootViewController,rootViewController,rootViewController,nil] animated:NO];

最佳答案

你可以试试这个:

RootViewController *rootViewController = [[[RootViewController alloc]init]autorelease];
RootViewController *rootViewController2 = [rootViewController retain];
RootViewController *rootViewController3 = [rootViewController retain];

tabBarController = [[[UITabBarController alloc]init]autorelease];
[tabBarController setDelegate:self];
[tabBarController setViewControllers:[NSArray arrayWithObjects:rootViewController, rootViewController2, rootViewController3, nil] animated:NO];

关于iphone - 如何将多个相同实例的 Controller 添加到我的 tabBarController?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13117775/

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