tabBar點擊,默認是藍色
更改
// 圖標顏色
self.tabBar.tintColor = TAB_BAR_COLOR;
// 字體顏色 選中
[[UITabBarItem appearance] setTitleTextAttributes:@{NSFontAttributeName : [UIFont fontWithName:@"HelveticaNeue-Bold" size:12.0F], NSForegroundColorAttributeName : TAB_BAR_COLOR} forState:UIControlStateSelected];
// 字體顏色 未選中
[[UITabBarItem appearance] setTitleTextAttributes:@{NSFontAttributeName : [UIFont systemFontOfSize:12.0F], NSForegroundColorAttributeName:[UIColor grayColor]} forState:UIControlStateNormal];
item.tabBar.translucent = false;
item.tabBar.tintColor = UIColor.yellowColor() 選中色
item.tabBar.barTintColor = 背景色