gpt4 book ai didi

ios - 无法更改 UINavigationController 的色调

转载 作者:行者123 更新时间:2023-11-28 19:04:24 25 4
gpt4 key购买 nike


我开始在我的项目中使用 UINavigationController,但出现了一个问题:我可以设置 barTintColor,但 tintColor 没有改变,始终是黑色...
所以,代码:

- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.

self.navigationBar.tintColor = [UIColor whiteColor];
self.navigationBar.barTintColor = [UIColor colorWithRed:(95/255.0) green:(136/255.0) blue:(180/255.0) alpha:(255.0)];
}

新:嘿,也许我的英语不好,但我会重复:我不能设置 TINTCOLOR,不是 barTintColor!

最佳答案

给你,先生。只需将其放入您的 viewDidLoad 方法中即可。

self.navigationController.navigationBar.barTintColor = [UIColor colorWithRed:(95/255.0) green:(136/255.0) blue:(180/255.0) alpha:1];

self.navigationController.navigationBar.tintColor = [UIColor whiteColor];

self.navigationController.navigationBar.titleTextAttributes = [NSDictionary dictionaryWithObject:[UIColor whiteColor] forKey:NSForegroundColorAttributeName];

关于ios - 无法更改 UINavigationController 的色调,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21782200/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com