最佳答案
在 UIKit 中,我们可以使用一个扩展来设置几乎所有东西的十六进制颜色,就像这个 教程一样。但是当我试图在 SwiftUI 中做这件事时,这是不可能的,看起来 SwiftUI 没有得到 UIColor
作为参数。
Text(text)
.color(UIColor.init(hex: "FFF"))
错误信息:
Cannot convert value of type 'UIColor' to expected argument type 'Color?'
我甚至试图延长 Color
,而不是 UIColor
,但我没有任何运气。
我的 Color
分机:
import SwiftUI
extension Color {
init(hex: String) {
let scanner = Scanner(string: hex)
scanner.scanLocation = 0
var rgbValue: UInt64 = 0
scanner.scanHexInt64(&rgbValue)
let r = (rgbValue & 0xff0000) >> 16
let g = (rgbValue & 0xff00) >> 8
let b = rgbValue & 0xff
self.init(
red: CGFloat(r) / 0xff,
green: CGFloat(g) / 0xff,
blue: CGFloat(b) / 0xff, alpha: 1
)
}
}
错误信息:
Incorrect argument labels in call (have 'red:green:blue:alpha:', expected '_:red:green:blue:opacity:')