设置导航栏按钮标题文本颜色

发布于 2024-10-12 06:30:02 字数 58 浏览 1 评论 0原文

我只是想知道是否可以设置 NavigationBarButton 的标题文本颜色,如果可以,如何设置?

I just wanted to know if it is possible to set the NavigationBarButton's title's text color, and if so how?

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

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

发布评论

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

评论(2

甜味超标? 2024-10-19 06:30:02

我做了以下事情。在 -(id)init 添加:

    // CUSTOMIZE NAVIGATION BAR TITLE COLOR
UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0.0, 0.0, 320.0, 44.0)];
[label setBackgroundColor:[UIColor clearColor]];
[label setFont:[UIFont boldSystemFontOfSize:20.0]];
[label setAdjustsFontSizeToFitWidth:YES];
[label setTextAlignment:UITextAlignmentCenter];
[[self navigationItem] setTitleView:label];
[label release];

然后在 -(void)viewDidLoad 添加:

    [[[self navigationItem] titleView] setText:@"TITLE"];
[[[self navigationItem] titleView] setTextColor:titleColor];

我这样放置它们,以便我可以根据到达此屏幕的方式更改标题和标题颜色。如果不需要自定义,那就全部放在init或者viewDidLoad中。这样做我收到一条警告:“UIView 可能不会响应'-setText'”,即使一切正常。

I did the following. In -(id)init add:

    // CUSTOMIZE NAVIGATION BAR TITLE COLOR
UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0.0, 0.0, 320.0, 44.0)];
[label setBackgroundColor:[UIColor clearColor]];
[label setFont:[UIFont boldSystemFontOfSize:20.0]];
[label setAdjustsFontSizeToFitWidth:YES];
[label setTextAlignment:UITextAlignmentCenter];
[[self navigationItem] setTitleView:label];
[label release];

Then in -(void)viewDidLoad add:

    [[[self navigationItem] titleView] setText:@"TITLE"];
[[[self navigationItem] titleView] setTextColor:titleColor];

I put them like this so that I could change the title and titleColor based on how one got to this screen. If you don't need to customize, then put it all in init or viewDidLoad. Doing it like this I get a warning that "UIView may not respond to '-setText'" even though it all works fine.

深海不蓝 2024-10-19 06:30:02

您可以为 UIBarButtonItem 设置图像,从而完全自定义标题文本。

You can set an image for the UIBarButtonItem and thus fully customize the title text.

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