Changing tab bar item image and text color iOS

前端 未结 22 1160
说谎
说谎 2020-12-02 06:10

Here is my tab bar:

\"enter

The following image shows the program being run an

22条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-02 06:52

    you can set tintColor of UIBarItem :

    UITabBarItem.appearance().setTitleTextAttributes([NSForegroundColorAttributeName: UIColor.magentaColor()], forState:.Normal)
    UITabBarItem.appearance().setTitleTextAttributes([NSForegroundColorAttributeName: UIColor.redColor()], forState:.Selected)
    

提交回复
热议问题