在这种情况下,“ JSONEncoder” /“ JSONDecoder”对于类型查找是不明确的

时间:2018-08-09 05:51:52

标签: ios json swift encoder decoder

我正在跟踪错误

enter image description here

我不知道为什么会得到这个,我该如何解决? 请帮忙!

注意:我正在使用 Xcode版本9.3.1 Swift4 , 我曾尝试使用 JSONCodable.JSONEncoder JSONCodable.JSONDecoder ,但是它不起作用。

以下是代码:

import Foundation
import JSONCodable

extension JSONEncoder {
    func encode(_ value: CGAffineTransform, key: String) {
        object[key] = NSValue(cgAffineTransform: value)
    }

    func encode(_ value: CGRect, key: String) {
        object[key] = NSValue(cgRect: value)
    }

    func encode(_ value: CGPoint, key: String) {
        object[key] = NSValue(cgPoint: value)
    }
}

extension JSONDecoder {

    func decode(_ key: String, type: Any.Type) throws -> NSValue {
        guard let value = get(key) else {
            throw JSONDecodableError.missingTypeError(key: key)
        }
        guard let compatible = value as? NSValue else {
            throw JSONDecodableError.incompatibleTypeError(key: key, elementType: type(of: value), expectedType: NSValue.self)
        }
        guard let objcType = String(validatingUTF8: compatible.objCType), objcType.contains("\(type)") else {
            throw JSONDecodableError.incompatibleTypeError(key: key, elementType: type(of: value), expectedType: type)
        }
        return compatible
    }

    func decode(_ key: String) throws -> CGAffineTransform {
        return try decode(key, type: CGAffineTransform.self).cgAffineTransformValue
    }

    func decode(_ key: String) throws -> CGRect {
        return try decode(key, type: CGRect.self).cgRectValue
    }

    func decode(_ key: String) throws -> CGPoint {
        return try decode(key, type: CGPoint.self).cgPointValue
    }
}

1 个答案:

答案 0 :(得分:3)

JSONCodable还声明了JSONEncoder / JSONDecoder类,因此编译器不知道您要扩展哪些类:标准类或库中的那些。

使用模块名称作为前缀,向编译器说明要扩展哪个类,应该消除歧义。

import Foundation
import JSONCodable

extension JSONCodable.JSONEncoder {
    // extension code
}

extension JSONCodable.JSONDecoder {
    // extension code
}

但是不适用于该特定库,因为该库声明了一个具有相同名称(JSONCodable)的协议。因此,您仅需要从模块中显式导入两个类(有关更多详细信息,请参见this SO post

import Foundation
import class JSONCodable.JSONEncoder
import class JSONCodable.JSONDecoder

extension JSONCodable.JSONEncoder {
    // your code
}

extension JSONCodable.JSONDecoder {
    // your code
}