Thursday, August 28, 2014

iOS - short note, how to change view of tabs in UiTabBarController

for (UINavigationController * nav in self.tabBarController.viewControllers) {


        [nav.tabBarItem setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:


                                                [UIColor grayColor],


                                                NSForegroundColorAttributeName,


                                                [UIFont systemFontOfSize:12], NSFontAttributeName,


                                                nil]


                                      forState:UIControlStateNormal];


        [nav.tabBarItem setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:


                                                [UIColor colorWithRed:0.0 green:122/255.0 blue:1.0 alpha:1], NSForegroundColorAttributeName,


                                                [UIFont systemFontOfSize:14], NSFontAttributeName,


                                                nil]


                                      forState:UIControlStateSelected];



    }

No comments:

Post a Comment