UIButton颜色变化
我想将 UIButton 颜色从棕色更改为深棕色。我怎么能做到这一点
myButton.backgroundColor = [UIColor brownColor];
关于如何将这种棕色更改为深棕色的任何想法。
感谢您的帮助。
I want to change UIButton color from brown color to darkbrown color. How i can do that
myButton.backgroundColor = [UIColor brownColor];
Any ideas that how to change this brown color to darkbrown color.
Thanks for help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果你只是想要一个更深的棕色,你可以手动指定它:(
默认棕色的亮度为6.0/10。)
如果你希望能够使一般颜色变暗,你可以这样做:
If you just want a darker brown specifically, you can manually specify it:
(The default brown color has brightness 6.0/10.)
If you want to be able to darken a color in general, you can do it like this:
从 iOS 5 开始,有一个名为“tintColor”的属性。
Starting on iOS 5 there is a property called tintColor.
没有预定义 darkBrownColor,但您可以使用 RGB 值创建 UIColor,如下所示:
There's no darkBrownColor predefined, but you can create a UIColor with RGB values like so: