How can I change the text and icon colors for tabBarItems in iOS 7?

前端 未结 11 928
陌清茗
陌清茗 2020-12-02 07:26

How can I change the text and icon colors for UITabBar and UITabBarItems in iOS 7? The default gray text seems dim and hard to read for unselected tabbar items.

11条回答
  •  不知归路
    2020-12-02 08:32

    You try it

    for (UITabBarItem *item in self.tabBarController.tabBar.items) {
            item.image = [[UIImage imageNamed:@"youimage.png"] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];
    
            [[UITabBarItem appearance] setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:
                                                               [UIColor whiteColor], UITextAttributeTextColor,
                                                               nil] forState:UIControlStateNormal];
    
            item.selectedImage = [UIImage imageNamed:@"youimage.png"];
        }
    

提交回复
热议问题