UITabBarController 如何更换里面的viewcontroller

最近遇到个需求
游客模式下 先加载好UITabBarcontroller
然后登录之后 要根据 服务器返回的一个字段来 判断 改变TabBarcontroller里面的控制器
比方说 i == 0 tabbarcontroller 结构就不变
i ==1 tabbarcontroller 第三个TabBar 就移除当前的控制器
就换成另外的控制器

我总结了2种解决方案 (个人感觉只能将就用用)如果有更好的实现方式 欢迎@我

第一种方式 更换UINavigationController里面的UIViewController

//得到第3个需要变的navi控制器
HBBaseNavigationController *navi = [self.viewControllers objectAtIndex:2];
HBMyAssetsSlideViewController *assets = [[HBMyAssetsSlideViewController alloc] init];
[navi setViewControllers:@[assets] animated:NO];

得到的结果这样

CF16EB5B-8266-4F92-9A1C-452BB286492A.png

];
修改代码如下

//得到第3个需要变的navi控制器
HBBaseNavigationController *navi = [self.viewControllers objectAtIndex:2];

HBMyAssetsSlideViewController *assets = [[HBMyAssetsSlideViewController alloc] init];

//重新设置更换的视图控制器的属性(感觉多余 可是不写被替换的就空白)
[self addChildVcItem:assets title:@"资产" image:@"TabBar5" selectedImage:@"TabBar5Sel"];
[navi setViewControllers:@[assets] animated:NO];

//重新设置了一下他的标题和TabBar内容 
- (void)addChildVcItem:(UIViewController *)childVc title:(NSString *)title image:(NSString *)image selectedImage:(NSString *)selectedImage
{
// 设置子控制器的文字
childVc.title = title; // 同时设置tabbar和navigationBar的文字
childVc.tabBarItem.title = title;
// 设置子控制器的图片
childVc.tabBarItem.image = [UIImage imageNamed:image];
//声明显示图片的原始式样 不要渲染
childVc.tabBarItem.selectedImage = [[UIImage imageNamed:selectedImage]imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];
}

第二种方式 重新布局viewcontrollers

HBMyAssetsSlideViewController *assets = [[HBMyAssetsSlideViewController alloc] init];
HBBaseNavigationController *nav = [[HBBaseNavigationController alloc] initWithRootViewController:assets];
[self addChildVcItem:assets title:@"资产" image:@"TabBar5" selectedImage:@"TabBar5Sel"];
[self setViewControllers:@[[self.viewControllers objectAtIndex:0],[self.viewControllers objectAtIndex:1],nav,[self.viewControllers objectAtIndex:3]] animated:NO];
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 14,190评论 4 61
  • 体验入:这几天各部门的每个人都很关心业绩的问题,距离20号就还有8天了,都怕完不成挨罚,大家都很用心的想要完成 找...
    Tracy_zhang阅读 916评论 0 1
  • 我未入过繁华之境 未听过喧嚣的声音 未见过太多生灵 未有过滚烫心情 所以也未觉大洋正中 有多么安静 直到 遇见你
    正能量锁骨少女阅读 1,027评论 0 0