Swift 如何以编程方式使用自定义颜色设置背景颜色?

Swift How to set background color with custom color programmatically?

我正在尝试以编程方式更改具有自定义颜色的 UILabel 的背景颜色。

谁能告诉我如何实现这个?

提前致谢。

编辑

我想知道如何使用存储在 Assets.xcassets 文件夹中的颜色。

你可以这样试试:

labelname.backgroundColor = UIColor.red

labelname.backgroundColor = UIColor(red:0, green:159.0/255.0, blue:184.0/255.0)

正如aheze在评论中所写,我使用了UIColor(named: "YourColorNameHere")