Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to change tabBar icon color in ios

My current tab bar looks as follows:

enter image description here

My code is as follows:

-(void)startTabBar{
     self.tabBarController = [[UITabBarController alloc] init];
     TAB_1  *tab_1 = [[TAB_1 alloc]init];
     TAB_2  *tab_2 = [[TAB_2 alloc]init];
     TAB_3  *tab_3 = [[TAB_3 alloc]init];

    [[UITabBarItem appearance] setTitleTextAttributes:[NSDictionary  dictionaryWithObjectsAndKeys: [UIColor blackColor], NSForegroundColorAttributeName, nil] forState:UIControlStateNormal];
   [[UITabBarItem appearance] setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:[UIColor redColor], NSForegroundColorAttributeName,nil] forState:UIControlStateSelected];

    NSArray* controllers = [NSArray arrayWithObjects:tab_1,tab_2, tab_3, nil];

   self.tabBarController.viewControllers = controllers;
   self.window.rootViewController = self.tabBarController;
}

What i want to do is:

Normal tab: title of tab should be black as it is but only icon image should be black. Expected tab should be like :

enter image description here

Selected tab: title of tab should be red as it is but only icon image should be red. Expected tab should be like :

enter image description here

tab bar color : make the whole tabBar color more transparent with same color

Can anyone help to do this?

like image 631
Lasang Avatar asked Jul 02 '14 08:07

Lasang


1 Answers

This accomplishes what you're asking for:

[[UITabBar appearance] setSelectedImageTintColor:[UIColor redColor]];
[[UITabBar appearance] setAlpha:0.25];
like image 134
michaelsnowden Avatar answered Sep 28 '22 01:09

michaelsnowden