gpt4 book ai didi

ios - Navigation Bar栏外观

转载 作者:行者123 更新时间:2023-11-28 21:55:15 26 4
gpt4 key购买 nike

如何更改导航栏占位符文本颜色?这些消息也有淡蓝色吗?

[[UINavigationBar appearance] setBackgroundImage:[[UIImage alloc] init]     forBarMetrics:UIBarMetricsDefault];
[[UINavigationBar appearance] setBackgroundColor:[UIColor redColor]];

最佳答案

认为这会奏效。

- (void)viewDidLoad
{

[super viewDidLoad];

//I am using UIColor BlueColor for an example but you can use whatever color you like

self.navigationController.navigationBar.titleTextAttributes = @{NSForegroundColorAttributeName: [UIColor blueColor]};

//change the title here to whatever you like
self.title = @"Home";

}

关于ios - Navigation Bar栏外观,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26824987/

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