iOS 开发之 字典转模型
2017-08-16 本文已影响0人
Phaemlo
1. 介绍
现在的ios开发中,我们通常会使用MVC模式。当我们拿到数据的时候,我们要把数据转成模型使用。
2. 优点:
(1)降低代码的耦合度
(2)所有字典转模型部分的代码统一集中在一处处理,降低代码出错的几率
(3)在程序中直接使用模型的属性操作,提高编码效率
(4)调用方不用关心模型内部的任何处理细节
3. 利用runtime实现转换:
通过动态获取属性列表,然后取出属性,由属性在数据字典获取值,然后在赋值给该模型属性。当对象的属性很少的时候,直接字典取出对应属性值简单赋值即可
_propertyName = dict["键"]
当对象的属性很多的时候,我们可以利用KVC批量设置。
setValuesForKeysWithDictionary:<#(NSDictionary *)#>
但是KVC批量转的时候,有个致命的缺点,就是当字典中的键,在对象属性中找不到对应的属性的时候会报错
4.设计模型
一般情况下,我们需要一个一个地生成模型属性,和字典中的key键一一对应,效率不高。所以,定义一个字典的分类,根据字典中的key生成对应的属性字符串。
代码如下
'''
#import "NSDictionary+PropertyCode.h"
// isKindOfClass:判断是否是当前类或者它的子类
@implementation NSDictionary (PropertyCode)
- (void)createPropertyCode {
NSMutableString *strM = [NSMutableString string];
/*
解析字典,生成对应属性代码
1.遍历字典,取出所有key,每个key对应一个属性代码
*/
[self enumerateKeysAndObjectsUsingBlock:^(id _Nonnull key, id _Nonnull value, BOOL * _Nonnull stop) {
NSLog(@"%@ %@",key,[value class]);
NSString *code = nil;
if ([value isKindOfClass:[NSString class]]) {
// NSString
code = [NSString stringWithFormat:@"@property (nonatomic ,strong) NSString *%@;",key];
} else if ([value isKindOfClass:NSClassFromString(@"__NSCFBoolean")]){
// Bool
code = [NSString stringWithFormat:@"@property (nonatomic ,assign) BOOL %@;",key];
}else if ([value isKindOfClass:[NSNumber class]]){
// NSInteger
code = [NSString stringWithFormat:@"@property (nonatomic ,assign) NSInteger %@;",key];
}else if ([value isKindOfClass:[NSArray class]]){
// NSArray
code = [NSString stringWithFormat:@"@property (nonatomic ,strong) NSArray *%@;",key];
}else if ([value isKindOfClass:[NSDictionary class]]){
// NSDictionary
code = [NSString stringWithFormat:@"@property (nonatomic ,strong) NSDictionary *%@;",key];
}
// 获取所有key
[strM appendFormat:@"\n%@\n",code];
}];
NSLog(@"%@",strM);
}
@end
'''
5.kvc 实现
- 弊端:必须保证,模型中的属性和字典中的key一一对应
如果不一致,就会调用setValue:forUndefinedKey:报key
找不到的错。
- 弊端:必须保证,模型中的属性和字典中的key一一对应
- 解决:重写对象的setValue:forUndefinedKey: ,把系统的方法覆盖, 就能继续使用KVC,字典转模型了
'''
- 解决:重写对象的setValue:forUndefinedKey: ,把系统的方法覆盖, 就能继续使用KVC,字典转模型了
- (void)setValue:(id)value forUndefinedKey:(NSString *)key
{
}
'''
6.Runtime
- 思路:利用运行时,遍历模型中所有属性,根据模型的属性名,去字典中查找key,取出对应的值,给模型的属性赋值。
- 步骤:提供一个NSObject分类,专门字典转模型,以后所有模型都可以通过这个分类转
上代码:
'''
#import <Foundation/Foundation.h>
@protocol ModelDelegate <NSObject>
@optional
// 提供一个协议,只要准备这个协议的类,都能把数组中的字典转模型
、、用在三级数组转换
+ (NSDictionary *)arrayContainModelClass;
@end
@interface NSObject (Item)
// 字典转模型
+ (instancetype)objectWithDict:(NSDictionary *)dict;
@end
'''
'''
#import "NSObject+Item.h"
#import <objc/message.h>
/*
* 把字典中所有value给模型中属性赋值,
* KVC:遍历字典中所有key,去模型中查找
* Runtime:根据模型中属性名去字典中查找对应value,如果找到就给模型的属性赋值.
*/
@implementation NSObject (Item)
// 字典转模型
// 2.4 去字典中取出对应value给模型属性赋值
id value = dict[key];
// 获取成员属性类型
NSString *ivarType = [NSString stringWithUTF8String:ivar_getTypeEncoding(ivar)];
// 二级转换,字典中还有字典,也需要把对应字典转换成模型
//
// 判断下value,是不是字典
if ([value isKindOfClass:[NSDictionary class]] && ![ivarType containsString:@"NS"]) { // 是字典对象,并且属性名对应类型是自定义类型
// user User
// 处理类型字符串 @\"User\" -> User
ivarType = [ivarType stringByReplacingOccurrencesOfString:@"@" withString:@""];
ivarType = [ivarType stringByReplacingOccurrencesOfString:@"\"" withString:@""];
// 自定义对象,并且值是字典
// value:user字典 -> User模型
// 获取模型(user)类对象
Class modalClass = NSClassFromString(ivarType);
// 字典转模型
if (modalClass) {
// 字典转模型 user
value = [modalClass objectWithDict:value];
}
// 字典,user
// NSLog(@"%@",key);
}
// 三级转换:NSArray中也是字典,把数组中的字典转换成模型.
// 判断值是否是数组
if ([value isKindOfClass:[NSArray class]]) {
// 判断对应类有没有实现字典数组转模型数组的协议
if ([self respondsToSelector:@selector(arrayContainModelClass)]) {
// 转换成id类型,就能调用任何对象的方法
id idSelf = self;
// 获取数组中字典对应的模型
NSString *type = [idSelf arrayContainModelClass][key];
// 生成模型
Class classModel = NSClassFromString(type);
NSMutableArray *arrM = [NSMutableArray array];
// 遍历字典数组,生成模型数组
for (NSDictionary *dict in value) {
// 字典转模型
id model = [classModel objectWithDict:dict];
[arrM addObject:model];
}
// 把模型数组赋值给value
value = arrM;
}
}
// 2.5 KVC字典转模型
if (value) {
[objc setValue:value forKey:key];
}
}
// 返回对象
return objc;
}
@end
模型代码
'''
#import <Foundation/Foundation.h>
#import "NSObject+Item.h"
@class User;
@interface Status : NSObject <ModelDelegate>
@property (nonatomic, strong) NSString *source;
@property (nonatomic, assign) int reposts_count;
@property (nonatomic, strong) NSArray *pic_urls;
@property (nonatomic, strong) NSString *created_at;
@property (nonatomic, assign) int attitudes_count;
@property (nonatomic, strong) NSString *idstr;
@property (nonatomic, strong) NSString *text;
@property (nonatomic, assign) int comments_count;
@property (nonatomic, strong) User *user;
@end
'''
'''
#import "Status.h"
@implementation Status
+ (NSDictionary *)arrayContainModelClass
{
return @{@"pic_urls" : @"Picture"};
}
@end
'''