UITabBarController * tab = [[UITabBarController alloc] init]; tab.delegate = self; [tab setHidesBottomBarWhenPushed:NO]; NSArray * arr = [NSArray arrayWithObjects:nav,nav2,nav3,nav4,nav5,nav6, nil]; [tab setViewControllers:arr]; //整個一條的顏色 [tab.tabBar setBarTintColor:[UIColor whiteColor]]; //每個圖標的顏色 [tab.tabBar setTintColor:[UIColor orangeColor]];