修改UITabbar背景色和文本颜色和大小:
[[UITabBar appearance] setBackgroundColor:UIColorFromRGB(0xeff3f4)];
[[UITabBarItem appearance] setTitleTextAttributes:@{
NSFontAttributeName : [UIFont fontWithName:@"HelveticaNeue" size:12.5f],
NSForegroundColorAttributeName : UIColorFromRGB(0x929292)
} forState:UIControlStateNormal];
[[UITabBarItem appearance] setTitleTextAttributes:@{
NSForegroundColorAttributeName : UIColorFromRGB(0xFF87C332)
} forState:UIControlStateSelected];
解决自定义选中图片显示为默认蓝色的问题&#