一、字典转模型的键值对与模型属性不匹配问题
1. 字典的键个数 < 模型的属性个数 (key 能与模型的属性匹配)
1> .KVO 方式:
- setValuesForKeysWithDictionary:
2> for循环的方式,一一赋值
2.字典的键个数 = 模型的属性个数 (key 能与模型的属性匹配)
同1。
3.字典的个数 > 模型的属性个数 (模型的属性为字典key 的其中一部分)
一共有三种解决方式
二、解决办法:
建立一个GXApp的模型,申明两个属性: name(名称) details(详细信息),在类方法中是直接使用
在控制器中使用:
直接运行:
Terminating app due to uncaught exception ‘NSUnknownKeyException‘,
reason: ‘[<GXApp 0x7ff1a8d41790> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key version .‘
解决办法一:
在类方法中,一个个属性赋值
1 // 2 // GXApp.m 3 // B01-字典转模型的属性不匹配问题 4 // 5 // Created by gxiangzi on 15/8/25. 6 // Copyright (c) 2015年 hqu. All rights reserved. 7 // 8 9 #import "GXApp.h" 10 11 @implementation GXApp 12 13 + (instancetype)appWithDict:(NSDictionary*)dict 14 { 15 GXApp* app = [[GXApp alloc] init]; 16 17 // 利用数组存储 模型的属性 18 NSArray* parameters = @[ @"name", @"details" ]; 19 // 遍历字典,判断模型是否有该属性 20 [parameters enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL* stop) 21 { 22 if (dict[obj]) 23 { 24 [app setValue:dict[obj] forKey:obj]; 25 } 26 }]; 27 28 return app; 29 } 30 31 @end
缺点: 该种方式对极少数属性相对简单,但是扩展性不高。
解决办法二
运行是机制,在运行时,判断模型的属性,然后赋值
1 // 2 // GXApp.m 3 // B01-字典转模型的属性不匹配问题 4 // 5 // Created by gxiangzi on 15/8/25. 6 // Copyright (c) 2015年 hqu. All rights reserved. 7 // 8 9 #import "GXApp.h" 10 #import <objc/runtime.h> 11 12 @implementation GXApp 13 14 + (instancetype)appWithDict:(NSDictionary *)dict 15 { 16 GXApp *app = [[GXApp alloc] init]; 17 18 NSArray *array = [app getProperties]; 19 20 21 // 根据属性的值,去数据字典中取对应的值 22 [array enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) { 23 // key 属性值. 24 NSString *key = obj; 25 26 if (dict[key]) { 27 28 [app setValue:dict[key] forKey:key]; 29 } 30 31 }]; 32 33 return app; 34 } 35 36 // 动态的获取某一个类的属性. 37 - (NSArray *)getProperties 38 { 39 unsigned int count; 40 41 // 获取一个类中的属性 42 objc_property_t *properties = class_copyPropertyList(self.class, &count); 43 44 NSMutableArray *array = [NSMutableArray array]; 45 46 // 遍历类中的属性,将每一个属性值都转换成 OC 的字符串 47 for (int i = 0; i < count; i++) { 48 49 // pro 依然是 C 语言的数据类型 50 objc_property_t pro = properties[i]; 51 52 // 指向C 语言字符串一个指针. 53 const char *name = property_getName(pro); 54 55 NSString *property = [[NSString alloc] initWithUTF8String:name]; 56 57 [array addObject:property]; 58 } 59 60 return array; 61 } 62 63 @end
缺点:运行时代码,C语言代码,代码不易记住
解决办法三、
重写 - setValuesForKeysWithDictionary:
// // GXApp.m // B01-字典转模型的属性不匹配问题 // // Created by gxiangzi on 15/8/25. // Copyright (c) 2015年 hqu. All rights reserved. // #import "GXApp.h" @implementation GXApp +(instancetype)appWithDict:(NSDictionary *)dict { GXApp *app = [[GXApp alloc] init]; [app setValuesForKeysWithDictionary:dict]; return app; } - (void)setValue:(id)value forUndefinedKey:(NSString *)key { // do nothing } @end
解释:
官方解释:
- (void)setValue:(id)value forUndefinedKey:(NSString *)key;
Given that an invocation of -setValue:forKey: would be unable to set the keyed value because the type of the parameter of the corresponding accessor method is an NSNumber scalar type or NSValue structure type but the value is nil, set the keyed value using some other mechanism. The default implementation of this method raises an NSInvalidArgumentException. You can override it to map nil values to something meaningful in the context of your application.
当利用kvo赋值的适合,如果键值不匹配,就会报一个 NSInvalidArgumentException 异常,可以重写这个方法可以解决