//tint color是设置你选中的那个tabBar的颜色,默认是蓝色,点击是设置的红色
vc.tabBar.tintColor = [UIColor redColor];
//bar tint color
vc.tabBar.barTintColor = [UIColor orangeColor];//背景的颜色
点击home键就是红色,背景颜色的橘色就是barTintColor
////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#pragma mark ------------------------VC2
ViewController2 *vc2 = [[ViewController2 alloc] init]; //设置视图控制器
vc2.title = @"通讯录";
vc2.view.backgroundColor = [UIColor grayColor];
vc2.tabBarItem = [[UITabBarItem alloc] initWithTitle:@"通讯录" image:[UIImage imageNamed:@"tabbar_contactsHL@2x"] tag:2];
//创建导航控制器
UINavigationController *nvc2 = [[UINavigationController alloc]initWithRootViewController:vc2];
nvc2.navigationBar.tintColor = [UIColor redColor];
nvc2.navigationBar.barStyle = UIBarStyleBlack;//背景是黑色
nvc2.navigationBar.translucent = NO;
.m中
self.navigationItem.rightBarButtonItem.tintColor = [UIColor greenColor];
vc2.title = @"通讯录1";是最上边中间显示的那个白色
vc2.view.backgroundColor = [UIColor grayColor]; 这个视图的背景是gray颜色
vc.tabBar.barTintColor = [UIColor orangeColor];//背景的颜色 是设置那个橘色
这个分栏控制器的名称是“通讯录”
UINavigationController *nvc2 = [[UINavigationController alloc]initWithRootViewController:vc2];创建导航控制器
取自于分栏目控制器vc2,
nvc2.navigationBar.tintColor = [UIColor redColor]; 设置导航控制器上边字体的颜色,上边的《《通讯录颜色就是红色,而
那个绿色的图标是因为在.m文件中 self.navigationItem.rightBarButtonItem.tintColor = [UIColor greenColor];,是在self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc]initWithBarButtonSystemItem:UIBarButtonSystemItemSearch target:self action:@selector(onNext)];导航控制器创建完导航按钮后,改变他的颜色的。