标签:
对于KVC模式(Key Value Coding):其实在实际开发中用得比较多得就是:接收到json数据之后,通过解析,解析成NSDictionary,然后再把字典对应的字段建立一个Model,在Model里面自定义一个类方法+(instancetype)modelWithDictionary:(NSDictionary *)keyDictionary方法中调用
[self setValuesForKeysWithDictionary:jsonObject];
从而达到我们想要的效果,将字典装成Model。
标签:
原文地址:http://my.oschina.net/caijunrong/blog/510701