How to change UITabBar Selection color

前端 未结 13 846
遇见更好的自我
遇见更好的自我 2020-12-13 09:02

I need to change the selection color of UITabBar from default blue to red. How do we do this.

13条回答
  •  渐次进展
    2020-12-13 09:35

    Swift 5 Programatically

    It is pretty easy in Swift 5.

    In your TabBarController write this:

    tintColor = UIColor.red  
    

    That's it

提交回复
热议问题