UITabBar 设置选中未选中状态下title的字体颜色

Posted free-thinker

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UITabBar 设置选中未选中状态下title的字体颜色相关的知识,希望对你有一定的参考价值。

一、如果只是设置选中状态的字体颜色,使用 tintColor  就可以达到效果

  1. self.tabBar.tintColor = [UIColor redColor];  


二、但如果要将未选中状态和选中状态下的颜色都改变,可以使用 setTitleTextAttributes:<#(nullable NSDictionary<NSString *,id> *)#> forState:<#(UIControlState)#> 达到效果

  1. [nav.tabBarItem setTitleTextAttributes:@{NSForegroundColorAttributeName:[UIColor redColor]} forState:UIControlStateNormal];  
  2. [nav.tabBarItem setTitleTextAttributes:@{NSForegroundColorAttributeName:[UIColor blueColor]} forState:UIControlStateSelected];  


       或者

    1. [[UITabBarItem appearance] setTitleTextAttributes:@{NSForegroundColorAttributeName:[UIColor redColor]} forState:UIControlStateNormal];  
    2. [[UITabBarItem appearance] setTitleTextAttributes:@{NSForegroundColorAttributeName:[UIColor blueColor]} forState:UIControlStateSelected]; 



以上是关于UITabBar 设置选中未选中状态下title的字体颜色的主要内容,如果未能解决你的问题,请参考以下文章

UITabBar 设置字体的颜色(选中状态/正常状态)setTitleTextAttributes

获取未选中状态的 uitabbaritem 的颜色?

自定义 UITabBar 未选中项的颜色

如何判断复选框 checkbox 是选中状态还是未选中

jQ无法设置checkbox变成选中状态

为啥当我在选中 CheckBox 的情况下滚动 ListView 时,它会变为未选中状态?