/ Published in: Objective C
Expand |
Embed | Plain Text
// code for changing the "more" color. tBarDashboard.moreNavigationController.navigationBar.tintColor=[UIColor colorWithRed:30/255.0 green:103/255.0 blue:7/255.0 alpha:1.0]; // code for changing the "configure" color. - (void)tabBarController:(UITabBarController *)controller willBeginCustomizingViewControllers:(NSArray *)viewControllers { UIView *editView = [controller.view.subviews objectAtIndex:1]; UINavigationBar *modalNavBar = [editView.subviews objectAtIndex:0]; modalNavBar.tintColor = [UIColor colorWithRed:30/255.0 green:103/255.0 blue:7/255.0 alpha:1.0]; }
You need to login to post a comment.
