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

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

    Working solution for iOS 7.0+:

    - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
    {
        [[UITabBarItem appearance] setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:
        [UIColor redColor], NSForegroundColorAttributeName,
        nil] forState:UIControlStateNormal];
    
        [[UITabBarItem appearance] setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:
        [UIColor whiteColor], NSForegroundColorAttributeName,
        nil] forState:UIControlStateSelected];
    }
    

提交回复
热议问题