gpt4 book ai didi

objective-c - 如何以编程方式设置 UIButton 的 Highlight Tint 颜色?

转载 作者:技术小花猫 更新时间:2023-10-29 10:48:48 31 4
gpt4 key购买 nike

UIButton 的 Interface Builder 中有一个 Highlight Tint 选项。是否可以通过编程方式为 iOS 5 中的所有 UIButton 更改它...使用某种外观协议(protocol)或其他解决方法?

最佳答案

你可以设置为

[button setTintColor:[UIColor grayColor]];

这相当于 IB 中的高亮色调选项,仅适用于高亮状态。

更新:为了对应用程序中的所有按钮实现这一点,请使用:

[[UIButton appearance] setTintColor:[UIColor orangeColor]]; 

它将为您要在您的应用中使用的所有 UIButton 设置。

检查此以获取有关 UIAppearance protocol 的更多详细信息.

关于objective-c - 如何以编程方式设置 UIButton 的 Highlight Tint 颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13133673/

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