博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UITabBarController动态添加TabBarItem
阅读量:5345 次
发布时间:2019-06-15

本文共 1217 字,大约阅读时间需要 4 分钟。

  NSArray *titles = @[L(@"首页"), L(@"新闻"), L(@"消息"), L(@"我的")];        NSArray *images = @[@"bottom_tabbar_home", @"bottom_tabbar_news", @"bottom_tabbar_message", @"bottom_tabbar_my"];        NSArray *imagesSel = @[@"bottom_tabbar_home_selected", @"bottom_tabbar_news_selected", @"bottom_tabbar_message_selected", @"bottom_tabbar_my_selected"];        NSMutableArray * tabarr = [NSMutableArray new];        [tabarr addObject:[self createChildrenCtrWithtitle:titles[0]]];    [tabarr addObject:[self createChildrenCtrWithtitle:titles[1]]];        [tabarr addObject:[self createChildrenCtrWithtitle:titles[2]]];    [tabarr addObject:[self createChildrenCtrWithtitle:titles[3]]];        self.viewControllers = tabarr;        [self.tabBar.items enumerateObjectsUsingBlock:^(UITabBarItem *item, NSUInteger idx, BOOL *stop) {        item.title = titles[idx];        UIImage *img = [UIImage imageNamed:images[idx]];        UIImage *selectImg = [UIImage imageNamed:imagesSel[idx]];        item.image =  [img imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];        item.selectedImage = [selectImg imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];    }];

 

转载于:https://www.cnblogs.com/huzhenchao/p/6898914.html

你可能感兴趣的文章
新手村之循环!循环!循环!
查看>>
线程安全问题
查看>>
linux的子进程调用exec( )系列函数
查看>>
MySQLdb & pymsql
查看>>
zju 2744 回文字符 hdu 1544
查看>>
【luogu P2298 Mzc和男家丁的游戏】 题解
查看>>
前端笔记-bom
查看>>
上海淮海中路上苹果旗舰店门口欲砸一台IMAC电脑维权
查看>>
Google透露Android Market恶意程序扫描服务
查看>>
给mysql数据库字段值拼接前缀或后缀。 concat()函数
查看>>
迷宫问题
查看>>
【FZSZ2017暑假提高组Day9】猜数游戏(number)
查看>>
泛型子类_属性类型_重写方法类型
查看>>
对闭包的理解
查看>>
练习10-1 使用递归函数计算1到n之和(10 分
查看>>
Oracle MySQL yaSSL 不明细节缓冲区溢出漏洞2
查看>>
Code Snippet
查看>>
zoj 1232 Adventure of Super Mario
查看>>
组合数学 UVa 11538 Chess Queen
查看>>
oracle job
查看>>