How to change tab bar item text color

前端 未结 12 1985
没有蜡笔的小新
没有蜡笔的小新 2020-12-13 05:36

\"enter

How can I change the color of \"More..\" text in tabbar to match with its icon

12条回答
  •  醉话见心
    2020-12-13 06:17

    Nowadays if your app supports version of iOS less than 13, you should set this colours different ways:

    if #available(iOS 13, *) {
        let appearance = UITabBarAppearance()
        appearance.stackedLayoutAppearance.selected.titleTextAttributes = [NSAttributedString.Key.foregroundColor: .red]
        tabBar.standardAppearance = appearance
    } else {
        UITabBarItem.appearance().setTitleTextAttributes(UIColor.red, for: UIControl.State.selected)
    }
    

    In code example I set red text color for selected states of UITabBarItem, you may also need to change text color for normal state.

提交回复
热议问题