iOS10之前
vc.tabBarItem.image = [vc.tabBarItem.image imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];
iOS10之后
[[CBBaseTabBar appearance] setUnselectedItemTintColor:[UIColor yellowColor]];
選中顏色
[[UITabBar appearance] setTintColor:kColorTheme];
陰影線顏色
[[UITabBar appearance] setShadowImage:[UIImage imageNamed:@"nil"]];
Tabbar背景顏色
[[UITabBar appearance] setBarTintColor:UIColorFromRGBA(0x111321, 1)];