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

前端 未结 11 904
陌清茗
陌清茗 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:28

    Now from iOS10 one can use

    @property (nonatomic, readwrite, copy, nullable) UIColor *unselectedItemTintColor
    

    to change default color for TabBarItem image and text at unselected state.

    Thus, the pair of properties tintColor and unselectedItemTintColor gives us full control on items colors.

提交回复
热议问题