24 Jun 2017

Tab bar Color change related...


Tab bar Color change related...



// this will generate a white tab bar
    [[UITabBar appearance] setBarTintColor:[UIColor whiteColor]];

    [[UITabBar appearance] setTintColor:orangeColor];

 // Change the title color of tab bar items in normal state

    [[UITabBarItem appearance] setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:[UIColor lightGrayColor], NSForegroundColorAttributeName,[UIFont fontWithName:Muli size:14.0],NSFontAttributeName,nil] forState:UIControlStateNormal];
  

// Change the title color of tab bar items in selected state
  
[[UITabBarItem appearance] setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:orangeColor, NSForegroundColorAttributeName,[UIFont fontWithName:Muli size:14.0],NSFontAttributeName,nil] forState:UIControlStateSelected];

No comments:

Post a Comment

Recent Posts

Codable demo

Link: https://www.dropbox.com/s/kw7c1kgv1628bh7/codableDemo.zip?dl=0