在利用系统setValuesForKeys
字典转模型时候,转型失败有时候报错
this class is not key value coding-compliant for the key xxx
解决办法:在类的前面加上@objcMembers
例如:
@objcMembers // 否则转不成功
class 类名: NSObject {
}
在利用系统setValuesForKeys
字典转模型时候,转型失败有时候报错
this class is not key value coding-compliant for the key xxx
解决办法:在类的前面加上@objcMembers
例如:
@objcMembers // 否则转不成功
class 类名: NSObject {
}