欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

快速改变UINavigationController和UITabBarController相关属相的方法

程序员文章站 2022-04-01 12:41:40
...

修改UITabBar中的TintColor和BarTintColor的颜色(对所有的UITabBar都起作用)

[[UITabBar appearance] setTintColor:[UIColor colorWithRed:0.407 green:0.867 blue:0.319 alpha:1.000]];
    [[UITabBar appearance] setBarTintColor:[UIColor colorWithRed:0.859 green:0.204 blue:0.219 alpha:1.000]];

修改UINavigationBar中的TintColor和BarTintColor的颜色(对所有的UINavigationBar都起作用)

[[UINavigationBar appearance] setTintColor:[UIColor colorWithRed:0.565 green:0.565 blue:1.000 alpha:1.000]];
    [[UINavigationBar appearance] setBarTintColor:[UIColor 
colorWithRed:0.327 green:1.000 blue:0.293 alpha:1.000]];

修改颜色的另一种方法:

[[UINavigationBar appearance] setTitleTextAttributes:@{NSForegroundColorAttributeName : [UIColor redColor]}];