如何修改TabBarItem的title的字体和颜色

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何修改TabBarItem的title的字体和颜色相关的知识,希望对你有一定的参考价值。

自定义。

[[UITabBarItem appearance] setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:
[UIColor whiteColor], UITextAttributeTextColor,
nil] forState:UIControlStateNormal];
UIColor *titleHighlightedColor = [UIColor greenColor];
[[UITabBarItem appearance] setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:
titleHighlightedColor, UITextAttributeTextColor,
nil] forState:UIControlStateSelected];
参考技术A yd-tabbar
有一个 active-color 属性 参数对应类型为String
大概的意思就是 active-color="颜色" 高亮就会改变对应颜色

以上是关于如何修改TabBarItem的title的字体和颜色的主要内容,如果未能解决你的问题,请参考以下文章

LWUIT 中的提示文本

iOS开发自定义UIPickView

iOS 13设置 tabbar字体

tabbar选中按钮的标题颜色和字体

UITabbarItem只显示图标

tabBarItem是模型,只有控件才有textColor属性