设置UINavigationBar的背景色没有效果?

发布于 2024-12-04 20:45:46 字数 128 浏览 0 评论 0原文

对于大多数 iOS 小部件,我可以设置背景颜色。看来 UINavigationBar 不是这样的。 此外,我无法设置导航项(顶部项)的背景,因为它不响应 setBackgroundColor。

我怎样才能改变那个颜色? 谢谢。

For most iOS widgets I can set the background color. It appears that UINavigationBar is not this way.
Furthermore I cannot set the navigation item (top item)'s background as it does not respond to setBackgroundColor.

How can I change that color?
Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

帅冕 2024-12-11 20:45:47

最简单的方法是使用界面生成器:

UINavigationBar Properties

Easiest way would be to use the Interface Builder:

UINavigationBar Properties

白日梦 2024-12-11 20:45:46

您应该使用 setTintColor: 代替:

[self.navigationController.navigationBar setTintColor:[UIColor redColor]];

希望这会有所帮助!

You should use setTintColor: instead:

[self.navigationController.navigationBar setTintColor:[UIColor redColor]];

Hope this helps!

掩饰不了的爱 2024-12-11 20:45:46

通过以下代码更改它:

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

Change it by following code:

self.navigationController.navigationBar.tintColor=[UIColor grayColor];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文