自定义 UINavigationBar

发布于 2024-09-08 17:59:00 字数 103 浏览 1 评论 0原文

我想设置应用程序上导航栏的颜色以及文本颜色。

如何做到这一点?

我见过有人解释将子视图添加到栏中的方法,但一定有一种更简单(费力)的方法。

问候

I would like to set the color of the navigation bar on my app as well as the text color.

How does one do this?

I have seen people explaining methods where subviews are added to the bar, but there must be an easier(painstakingly) method.

Regards

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

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

发布评论

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

评论(1

人海汹涌 2024-09-15 17:59:00

试试这个。非常未经测试(尤其是最后两行可能并不总是有效,但如果你尝试一下,你就会知道它是否有效)。

navigationController.navigationBar.tintColor = [UIColor purpleColor];
navigationController.topViewController.title = @"ye olde title";
UILabel *titleView = [navigationController.navigationBar.subviews objectAtIndex:0];
[titleView setFont:[UIFont fontWithName:@"Zapfino" size:10.f]];

Try this. Very untested (especially the last two lines may not always work, but if you play around with it you'll know if it does or not).

navigationController.navigationBar.tintColor = [UIColor purpleColor];
navigationController.topViewController.title = @"ye olde title";
UILabel *titleView = [navigationController.navigationBar.subviews objectAtIndex:0];
[titleView setFont:[UIFont fontWithName:@"Zapfino" size:10.f]];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文