//主题设置
[[UITabBar appearance] setBackgroundImage:[UIImage imageNamed:@"tabbar-light"]];
NSDictionary * dict = @{
NSFontAttributeName : [UIFont systemFontOfSize:14],
NSForegroundColorAttributeName : [UIColor grayColor]
};
//key 定义在NSAttributedString.h
NSDictionary * selectDict = @{NSForegroundColorAttributeName : [UIColor darkGrayColor]};
UITabBarItem * item = [UITabBarItem appearance];
[item setTitleTextAttributes:dict forState:UIControlStateNormal];
[item setTitleTextAttributes:selectDict forState:UIControlStateSelected];
时间: 2024-11-06 03:34:52