(iOS开发)Model中数据多怎么办,JSON中数据多,种类多的解析Model

//model是自己的类型  ,dic是json中所需要解析出来的字典

[model setValuesForKeysWithDictionary:dic];

//1、如果model里面的有不存在于dic中的元素会怎样?

//在Model文件中添加一行



@property (nonatomic,copy)NSString *other;

//并输出得时候输出



NSLog(@"test.other=%@",test.other);





//2.如果dic里面的有不存在于model中的元素会怎样?



//在Model文件中删除一行



@property (nonatomic,copy) NSString* age;

//在删除对应得输出后运行。



//糟了!通过了编译,但是运行时报错!



Terminating app due to uncaught exception 'NSUnknownKeyException',

reason: '[<PersonModel 0x7fd731517910> setValue:forUndefinedKey:]:

this class is not key value coding-compliant for the key age.'

    //因为在model中,没有对应的age属性,所以导致了程序崩溃。

    

    //解决方式就是实现一个方法setValue:forUndefinedKey: 这个方法能过滤掉不存在的键值。

    

    //在model中添加。

    //h文件中添加:

    

    -(void)setValue:(id)value forUndefinedKey:(NSString *)key;

//并需要在m文件中实现:



-(void)setValue:(id)value forUndefinedKey:(NSString *)key{

    

}



//3.如果dic中的key与model中的变量名字不同,应该怎么赋值?



//从前面我们可以知道,dic中key赋值给model中与key同名的属性。

//那么如果dic中得key值为 username,model中的名字为name,又或是dic中的key值为ID,INT 等关键字,应该怎么变化。

//答案也是从setValue:forUndefinedKey方法入手。



//首先我们把dic的值改变:



NSDictionary *dic = @{@"username":@"张三",@"sex":@"男",@"id":@"22"};

//model中的属性:



@property (nonatomic,copy)NSString *name;

@property (nonatomic,copy)NSString *sex;

@property (nonatomic,copy) NSString* age;

//完善model中的setValue:forUndefinedKey方法



-(void)setValue:(id)value forUndefinedKey:(NSString *)key{

    if([key isEqualToString:@"id"])

    {

        self.age=value;

    }

    if([key isEqualToString:@"username"])

    {

        self.name=value;

    }

}

//运行后结果:



2015-10-19 14:30:11.241

setValuesForKeysWithDictionary[10289:956012] test.name=张三

2015-10-19 14:30:11.242

setValuesForKeysWithDictionary[10289:956012] test.sex=男

2015-10-19 14:30:11.242

setValuesForKeysWithDictionary[10289:956012] test.age=22

//正常输出!
 

转载自http://www.jianshu.com/p/870eb4b4170a


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值