UIButton外观setBackgroundColor在更新

时间:2018-01-14 14:46:05

标签: ios objective-c xcode uibutton

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

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

enter image description here

1 个答案:

答案 0 :(得分:2)

由于这个特定的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