How to change UITabBar Selection color

前端 未结 13 823
遇见更好的自我
遇见更好的自我 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:42

    It is extremely easy

    Create a custom class of UITabBarController and in -(void)viewDidLoad method add this line:

    [[self tabBar] setSelectedImageTintColor:[UIColor greenColor]]; 
    

提交回复
热议问题