如何为 UIKit 控件设置自定义颜色?
是否可以为 UIKit 控件提供自定义颜色代码?
是通过传递十六进制颜色值还是使用 RGB 值?
刚刚注意到文档中有一个 initWithRed:green:blue:alpha: 方法
有什么方法可以让十六进制代码工作吗?
Is it possible to give custom color codes to UIKit controls?
Either by passing hex color values or working with RGB values?
Just noticed in the documentation there is a initWithRed:green:blue:alpha: method
Any way of getting hex codes to work?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用以下宏可以让我完成我正在寻找的事情
改变颜色只是调用宏的问题
A use of the following macro would allow me to accomplish what I am looking for
To change the color is just a matter of calling the macro
您的另一个选择是将十六进制值转换为 RGB 并将其输入界面生成器中。
Your other option is to convert your hex values to RGB and enter them in the interface builder.