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

前端 未结 6 1452
别跟我提以往
别跟我提以往 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:06

    [[UITabBarItem appearance] setTitleTextAttributes:@{
                                 UITextAttributeFont : [UIFont fontWithName:@"HelveticaNeue-Bold" size:10.0f],
                            UITextAttributeTextColor : [UIColor colorWithRed:0/255.0 green:48/255.0 blue:92/255.0 alpha:1.0],}
                                             forState:UIControlStateNormal];
    
    [[UITabBarItem appearance] setTitleTextAttributes:@{
                                 UITextAttributeFont : [UIFont fontWithName:@"HelveticaNeue-Bold" size:10.0f],
                            UITextAttributeTextColor : [UIColor colorWithRed:0/255.0 green:138/255.0 blue:196/255.0 alpha:1.0],}
                                             forState:UIControlStateSelected];
    

提交回复
热议问题