我正在使用CGColor浅蓝色,现在我想使用确切的颜色作为uiButton的背景.我怎样才能做到这一点?
使用UIColor(cgColor:...)从CGColor获取UIColor:
let uiColor = UIColor(cgColor: cgColor)
然后将其指定为按钮的背景颜色.