How can I change a color of image and label on UITabBar on iOS 7.1?

后端 未结 3 1737
遥遥无期
遥遥无期 2021-01-27 15:16

How can I change a color of image and label on UITabBar on iOS 7.1? On iOS 7 I could make it by Tint property. But on iOS 7.1 it doesn\'t work.

3条回答
  •  滥情空心
    2021-01-27 15:49

    This changes the tint of both the image and the label, when selected.

    - (void)viewDidLoad
    {
        [super viewDidLoad];
        [[UITabBar appearance] setTintColor:[UIColor redColor]];
    }
    

提交回复
热议问题