我正在跟踪错误
我不知道为什么会得到这个,我该如何解决? 请帮忙!
注意:我正在使用 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
}
}
答案 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
}