gpt4 book ai didi

ios - 更新后 UIButton 外观 setBackgroundColor 现在影响导航栏

转载 作者:塔克拉玛干 更新时间:2023-11-02 10:21:34 24 4
gpt4 key购买 nike

Xcode 或 iOS 更新使以下代码的功能有所不同,因为现在导航栏按钮背景具有背景色,这与以前不同。任何修复?我希望所有按钮都具有相同的全局颜色,但现在它会影响我不想要的导航栏按钮。我希望它像以前一样透明。

[[UIButton appearance] setBackgroundColor:[Helper getColor:self.application.color]];

enter image description here

最佳答案

由于这个特定的 UIButton 位于 UINavigationBar 内,您可以尝试应用第二个特定外观来“覆盖”第一个通用外观集。例如专门调用,

[[UIButton appearanceWhenContainedIn:[UINavigationBar class], nil]
setBackgroundColor:[UIColor clearColor] forState:state barMetrics:metrics];

在你打电话之后,

[[UIButton appearance] setBackgroundColor:[Helper getColor:self.application.color]];

用特殊覆盖一般。

文档链接:https://developer.apple.com/documentation/uikit/uiappearance

关于ios - 更新后 UIButton 外观 setBackgroundColor 现在影响导航栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48250750/

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