ios ~ UITabBarController tabBar背景色
tabbar 做个笔记。
改变tabbar的选中的item的字体颜色
self.tabbar.tintColor = [UIColor redColor];
改变tabbar未选中的item的字体颜色
self.tabbar.unselectedItemTintColor = [UIColor yellowColor];
改变tabbar的背景颜色
方法1
self.tabba
