NSObjiect *obj;[obj setValue:value forKey:@"cpname"]
复制代码的时候都会出现这个异常
this class is not key value coding-compliant for the key cpname;
原因:obj不包含属性cpname
可以考虑使用 NSMutaleDictionary(Mutable) 类型的变量保存
时间: 2024-10-22 19:19:20
NSObjiect *obj;[obj setValue:value forKey:@"cpname"]
复制代码的时候都会出现这个异常
this class is not key value coding-compliant for the key cpname;
原因:obj不包含属性cpname
可以考虑使用 NSMutaleDictionary(Mutable) 类型的变量保存