To change the color of unselected UITabBar icon in iOS 7?

后端 未结 4 1157
小蘑菇
小蘑菇 2020-12-08 22:09

I know this question has been asked earlier as well, but still i didn\'t get any solution searching the solution on internet.

I referred the following posts:

4条回答
  •  南方客
    南方客 (楼主)
    2020-12-08 22:43

    change UIControlStateHighlighted to UIControlStateSelected for iOS8

     [[UITabBarItem appearance] setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:
                                                               [UIColor whiteColor], NSForegroundColorAttributeName,
                                                               nil] forState:UIControlStateNormal];
        [[UITabBarItem appearance] setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:
                                                               titleHighlightedColor, NSForegroundColorAttributeName,
                                                               nil] forState:UIControlStateSelected]
    

提交回复
热议问题