How to change the Color of text in UITabBarItem in iOS 5

前端 未结 6 1455
别跟我提以往
别跟我提以往 2020-11-29 22:42

with more appearance control in iOS 5, how do we change the UITabBarItem text color ? from default white to other color ?

EDIT:working solution

  [[U         


        
6条回答
  •  忘掉有多难
    2020-11-29 23:00

    I do not have enough reputation points to add a comment so I will add another answer here.

    I have had the same problem and searched for the past hour and finally realized that my issue is because I didn't put the code into method viewWillAppear. Not sure if this is common sense as I just started with objective-c but thought this should be another piece of important information to the answer as the same code didn't work inside viewDidLoad.

    According to this post, this code only works if put in the method viewWillAppear.

提交回复
热议问题