geiUItabBarItem设置图片颜色和title颜色

时间:2023-11-28 00:00:56

设置图片颜色

tabBarVCtrl.tabBar.selectedImageTintColor = [UIColor greenColor];//设置tabBarItem选中时的字图颜色,iOS 8.0中没有该属性(若设置,会出现警告)

设置title颜色

[[UITabBarItem appearance] setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:[UIColor whiteColor],NSForegroundColorAttributeName, nil]  forState:UIControlStateSelected];

相关文章