swift3\4:this|swift3\4:this class is not key value coding-compliant for the key xxx

在利用系统setValuesForKeys字典转模型时候,转型失败有时候报错

this class is not key value coding-compliant for the key xxx

【swift3\4:this|swift3\4:this class is not key value coding-compliant for the key xxx】解决办法:在类的前面加上@objcMembers 例如:
@objcMembers// 否则转不成功 class 类名: NSObject { }

    推荐阅读