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