[iOS] KVO setValuesForKeysWithDictionary

时间:2015-07-08 10:04:38

标签: ios key-value-observing

我正在使用setValuesForKeysWithDictionary来填充我的模型对象。模型对象定义为

@interface CommonModel : NSObject
    @property (nonatomic,copy)NSString *imageUrl;
    @property (nonatomic,copy)NSString *name;
    @property (nonatomic,copy)NSString *uuid;
    @property (nonatomic,strong)MetaDataModel *metaData;
    @property (nonatomic,copy)NSString *type;
    @property (nonatomic,copy)NSString *age;
@end

我按如下方式启动课程

CommonModel *model = [[CommonModel alloc] init];
[model setValuesForKeysWithDictionary:dic];

dic来自服务器数据,如

{
    category = random;
    created = 1436348796510;
    duration = 259;
    metadata =     {
        path = "/songs/396677ea-2556-11e5-afe1-033c8b2070b7";
    };
    modified = 1436348796510;
    name = "\U6ce1\U6cab";
    type = song;
    url = "http://www.devinzhao.com/pomo.mp3";
    uuid = "396677ea-2556-11e5-afe1-033c8b2070b7";
}

我知道这种类型应该是“歌曲”而不是歌曲。

当我使用[model setValue:@“type”forKey:@“type”];它没有崩溃。

但我不想使用

[model setValue:@"type" forKey:@"type"];

如何解决这个问题?

2 个答案:

答案 0 :(得分:2)

忘记使用KVC并手动编码接受init的{​​{1}}方法。

然后,您可以决定如何解释字典中的每个值;例如NSDictionary应为type,而不是字符串,enum应为imageUrlNSURL应为uuid等。

答案 1 :(得分:0)

也许这有帮助

CommonModel *model = [[CommonModel alloc] init];
[dic setValue:[NSString stringWithFormat:@"%@",dic[@"type"]] forKey:@"type"];
[model setValuesForKeysWithDictionary:dic];