gpt4 book ai didi

iphone - 如何更改 UINavigationBar 按钮项目上的文本颜色

转载 作者:行者123 更新时间:2023-12-03 18:20:04 25 4
gpt4 key购买 nike

我有一个 UINavigationController,并使用 Interface Builder 中导航栏的 Tint 属性将其更改为白色。但按钮中的文本和标题仍然是默认颜色白色,因此在白色背景下会丢失。有人知道如何解决这个问题吗?

最佳答案

从 iOS 5 开始,使用 UIBarButtonItem 外观代理就更容易了:

 NSDictionary *attributes = [NSDictionary dictionaryWithObjectsAndKeys: 
[UIColor blackColor],
UITextAttributeTextColor,
[UIColor clearColor],
UITextAttributeTextShadowColor, nil];

[[UIBarButtonItem appearance] setTitleTextAttributes: attributes
forState: UIControlStateNormal];

在应用程序中设置它:didFinishLaunchingWithOptions:

关于iphone - 如何更改 UINavigationBar 按钮项目上的文本颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/505180/

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