iOS 7에서 탭 막대 색조 색상 변경 iOS 7에서 탭 막대의 색조를 파란색 아이콘이있는 기본 흰색에서 다른 색상 버튼이있는 다른 색조로 변경하는 방법이 있습니까? 아래를 시도하십시오. [[UITabBar appearance] setTintColor:[UIColor redColor]]; [[UITabBar appearance] setBarTintColor:[UIColor yellowColor]]; 비활성 버튼에 색조를 지정하려면 VC에 아래 코드를 입력하십시오 viewDidLoad. UITabBarItem *tabBarItem = [yourTabBarController.tabBar.items objectAtIndex:0]; UIImage *unselectedImage = [UIImage imageNam..