UITabbarController 动态更改项目

Posted

技术标签:

【中文标题】UITabbarController 动态更改项目【英文标题】:UITabbarController change items dynamically 【发布时间】:2012-06-29 14:10:11 【问题描述】:

我想在视图生命周期内编辑 UITabbarItems。 背景是我有一个带有登录视图的应用程序,根据用户是否是管理员,管理员TabbarItem应该是可见的。

我正在使用此代码在 AppDelegate 中最初创建 UITabbarController:

// AppDelegate.m

settings = [[settingsViewController alloc] init];
settings.tabBarItem = [[UITabBarItem alloc] initWithTitle:@"Einstellungen" image:[UIImage imageNamed:@"settings.png"] tag:3];

self.tabBarController = [[UITabBarController alloc] init];
self.tabBarController.viewControllers = [NSArray arrayWithObjects:readState, friends, settings, nil];

当我稍后尝试从另一个 UIViewController 操作项目时,什么都没有发生,并且 UITabbar 仍然像以前一样。 我实际上尝试了两种我能想象到的方法:

[[self tabBarController] setToolbarItems:[[[self tabBarController] toolbarItems] arrayByAddingObject:admin] animated:NO];
[[self tabBarController] setViewControllers:[[[self tabBarController] viewControllers] arrayByAddingObject:admin] animated:NO];

我怎样才能达到我的目标?在此先感谢,朱利安

【问题讨论】:

【参考方案1】:

我找到了解决问题的方法。我不太喜欢导入 AppDelegate,但似乎没有为 UITabbarController 的 UIViewControllers 自动设置 tabbarController 属性。

// generate an instance of the needed UIViewController
adminViewController *admin = [[adminViewController alloc] init];
admin.tabBarItem = [[UITabBarItem alloc] initWithTitle:@"Admin" image:[UIImage imageNamed:@"admin.png"] tag:5];

// get the AppDelegate instance
AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];

// get the »viewControllers« array of the AppDelegates UITabbarController as mutable array
NSMutableArray *viewControllersArray = [NSMutableArray arrayWithArray:[[appDelegate tabBarController] viewControllers]];
// insert the UITabbarItem of the needed UIViewController
[viewControllersArray insertObject:admin atIndex:2];

// Finally tell the app delegates UITabbarController to set the needed viewControllers
[[appDelegate tabBarController] setViewControllers:viewControllersArray animated:NO];

【讨论】:

以上是关于UITabbarController 动态更改项目的主要内容,如果未能解决你的问题,请参考以下文章

ios在选择uitabbarcontroller项目时检索

如何使用子视图控制器中的按钮单击更改 tabBar 项目标题

使选定的 UITabBarController 项目图标更大

继承 UITabBarController 和 UINavigationController

加载后是不是可以更改 UITabBarController 文本颜色?

更改 UITabBar 高度