美文网首页
OC - Tabbar的选中文字改变颜色

OC - Tabbar的选中文字改变颜色

作者: HelloWong | 来源:发表于2021-01-29 14:37 被阅读0次
// 默认
NSMutableDictionary *attrs = [NSMutableDictionary dictionary];
attrs[NSFontAttributeName] = [UIFont systemFontOfSize:12];
attrs[NSForegroundColorAttributeName] = [UIColor grayColor];

// 选中
NSMutableDictionary *attrSelected = [NSMutableDictionary dictionary];
attrSelected[NSFontAttributeName] = [UIFont systemFontOfSize:12];
attrSelected[NSForegroundColorAttributeName] = [UIColor darkGrayColor];


UITabBarItem *item = [UITabBarItem appearance];
[item setTitleTextAttributes:attrs forState:UIControlStateNormal];
[item setTitleTextAttributes:attrSelected forState:UIControlStateNormal];

相关文章

网友评论

      本文标题:OC - Tabbar的选中文字改变颜色

      本文链接:https://www.haomeiwen.com/subject/ctgttltx.html