IOS tabbarItem 文字颜色,背景颜色设置方法

设置文字颜色使用下边方法:

[[UITabBarItemappearance]setTitleTextAttributes:[NSDictionarydictionaryWithObjectsAndKeys:[UIColorredColor],NSForegroundColorAttributeName,nil]forState:UIControlStateSelected];


设置不同状态中的图片,使用的方法

self.tabBarItem.image= [[UIImageimageNamed:@"tab_home"]imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];

self.tabBarItem.selectedImage= [[UIImageimageNamed:@"tab_home-s"]imageWithRenderingMode:

你可能感兴趣的:(IOS tabbarItem 文字颜色,背景颜色设置方法)