Is there a way to use a custom selected image for UITabBarItem?

前端 未结 9 1991
滥情空心
滥情空心 2020-12-08 05:52

I like to have a custom selected image when a user selects an item on the tab bar, by default it selects as blue like but would like to have a green color instead. something

9条回答
  •  盖世英雄少女心
    2020-12-08 06:43

    For iOS5 and upwards, you can just do this:

    rootTabBarController.tabBar.selectedImageTintColor = [UIColor greenColor];
    

提交回复
热议问题