初始化器要求 'init(json:)' 只能通过非最终类 'UIColor' 定义中的“必需"初始化器来满足 [英] Initializer requirement 'init(json:)' can only be satisfied by a `required` initializer in the definition of non-final class 'UIColor'

查看:79
本文介绍了初始化器要求 'init(json:)' 只能通过非最终类 'UIColor' 定义中的“必需"初始化器来满足的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试编写一个扩展来满足扩展中的协议,如下所示:

I'm trying to write an extension to satisfy a protocol in an extension like so:

extension UIColor: JSONRepresentable {
    convenience init?(json: Any) {
        guard let colourArray = json as? [CGFloat] else {
            print("json was not an array of CGFloats")
            return nil
        }
    
        self.init(
            red: colourArray[0],
            green: colourArray[1],
            blue: colourArray[2],
            alpha: colourArray[3]
        )
    }
}

我收到此错误:

Initializer requirement 'init(json:)' can only be satisfied by a required initializer in the definition of non-final class 'UIColor'.

如果我添加一个 required 关键字,我会收到这个错误

If I add a required keyword, I get this error

'required' initializer must be declared directly in class 'UIColor' (not in an extension).

是否有原因或任何解决方法?

Is there a reason for this or any way to work around it?

为了清楚起见,这是协议

Just to be clear, here's the protocol

protocol JSONRepresentable {
    init?(json: Any)
}

推荐答案

struct Color: Codable {
    let red, green, blue, alpha: CGFloat
}

extension Color {
    var uiColor: UIColor { return UIColor(color: self) }
    var cgColor: CGColor { return uiColor.cgColor }
    var ciColor: CIColor { return CIColor(color: uiColor) }
    var data: Data { return try! JSONEncoder().encode(self) }
}

extension UIColor {
    convenience init(color: Color) {
        self.init(red: color.red, green: color.green, blue: color.blue, alpha: color.alpha)
    }
    var color: Color {
        let color = CIColor(color: self)
        return Color(red: color.red, green: color.green, blue: color.blue, alpha: color.alpha)
    }
}
extension Data {
    var string: String {
        return String(data: self, encoding: .utf8) ?? ""
    }
}

<小时>

游乐场测试


Playground testing

let json = """
{"red": 0.5, "green": 0.0, "blue": 0.0, "alpha": 1.0}
"""

if let color = try? JSONDecoder().decode(Color.self, from: Data(json.utf8)) {
    print(color)                  // "Color(red: 0.5, green: 0.0, blue: 0.0, alpha: 1.0)\n"
    print(color.uiColor)          // "UIExtendedSRGBColorSpace 0.5 0 0 1\n
    print(color.data)         // "40 bytes\n"
    print(color.data.string)  // "{"red":0.5,"alpha":1,"blue":0,"green":0}\n"
}

let redColor = UIColor.red.color
let jsonData = redColor.data.string  // "{"red":1,"alpha":1,"blue":0,"green":0}"

<小时><小时>

如果您需要使用 CGFloats 数组,您可以覆盖 JSON 编码器和解码器初始值设定项:



If you need to work with your array of CGFloats you can override JSON Encoder and Decoder initializers:

extension Color {
    public init(from decoder: Decoder) throws {
        var container = try decoder.unkeyedContainer()
        red   = try container.decode(CGFloat.self)
        green = try container.decode(CGFloat.self)
        blue  = try container.decode(CGFloat.self)
        alpha = try container.decode(CGFloat.self)
    }
    public func encode(to encoder: Encoder) throws {
        var container = encoder.unkeyedContainer()
        try container.encode(red)
        try container.encode(green)
        try container.encode(blue)
        try container.encode(alpha)
    }
}

<小时>

测试

let values: [CGFloat] = [0.5,0.0,0.0,1.0]
let jsonData = try JSONSerialization.data(withJSONObject: values) // 11 bytes
let json = jsonData.string   // "[0.5,0,0,1]"

do {
    let color = try JSONDecoder().decode(Color.self, from: jsonData)
    print(color)                  // "Color(red: 0.5, green: 0.0, blue: 0.0, alpha: 1.0)\n"
    print(color.uiColor)          // "UIExtendedSRGBColorSpace 0.5 0 0 1\n
    print(color.data)                                  // "11 bytes\n"
    print(color.data.string)                           // "[0.5,0,0,1]\n"
    let encodedData = try JSONEncoder().encode(color)  // 11 bytes
    print(encodedData == jsonData)                     // true
} catch {
    print(error)
}

这篇关于初始化器要求 'init(json:)' 只能通过非最终类 'UIColor' 定义中的“必需"初始化器来满足的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆