UITabBar 设置选中未选中状态下title的字体颜色
Posted free-thinker
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UITabBar 设置选中未选中状态下title的字体颜色相关的知识,希望对你有一定的参考价值。
一、如果只是设置选中状态的字体颜色,使用 tintColor 就可以达到效果
- self.tabBar.tintColor = [UIColor redColor];
二、但如果要将未选中状态和选中状态下的颜色都改变,可以使用 setTitleTextAttributes:<#(nullable
NSDictionary<NSString *,id> *)#>
forState:<#(UIControlState)#> 达到效果
- [nav.tabBarItem setTitleTextAttributes:@{NSForegroundColorAttributeName:[UIColor redColor]} forState:UIControlStateNormal];
- [nav.tabBarItem setTitleTextAttributes:@{NSForegroundColorAttributeName:[UIColor blueColor]} forState:UIControlStateSelected];
或者
- [[UITabBarItem appearance] setTitleTextAttributes:@{NSForegroundColorAttributeName:[UIColor redColor]} forState:UIControlStateNormal];
- [[UITabBarItem appearance] setTitleTextAttributes:@{NSForegroundColorAttributeName:[UIColor blueColor]} forState:UIControlStateSelected];
以上是关于UITabBar 设置选中未选中状态下title的字体颜色的主要内容,如果未能解决你的问题,请参考以下文章