美文网首页
使用runtime和KVC字典转模型

使用runtime和KVC字典转模型

作者: 07212a79db66 | 来源:发表于2016-06-30 15:30 被阅读69次

使用KVC字典转模型的时候,KVC是通过遍历字典中的所有的key去模型中查找有没有对应的属性名,而runtime则是先遍历模型当中的所有的属性名去字典中查找

NSObject+Model.h

#import <Foundation/Foundation.h>

@interface NSObject (Model)

+ (instancetype)modelWithDict:(NSDictionary *)dict;

@end

NSObject+Model.m

#import "NSObject+Model.h"
#import <objc/message.h>

@implementation NSObject (Model)
+ (instancetype)modelWithDict:(NSDictionary *)dict{
    // 1.创建对应类的对象
    id objc = [[self alloc] init];
    // runtime:遍历模型中所有成员属性,去字典中查找
    
    // 遍历模型所有成员属性
    // ivar:成员属性
    // class_copyIvarList:把成员属性列表复制一份给你
    // Ivar *:指向Ivar指针
    // Ivar *:指向一个成员变量数组
    // class:获取哪个类的成员属性列表
    // count:成员属性总数
    unsigned int count = 0;
    Ivar *ivarList = class_copyIvarList(self, &count);
    for (int i = 0 ; i < count; i++) {
        // 获取成员属性
       Ivar ivar = ivarList[i];
        
        // 获取成员名
       NSString *propertyName = [NSString stringWithUTF8String:ivar_getName(ivar)];
        ;
        // 获取key
        NSString *key = [propertyName substringFromIndex:1];
        // user value:字典
        // 获取字典的value
        id value = dict[key];
        // 给模型的属性赋值
        // value:字典的值
        // key:属性名
        
        // 成员属性类型
        NSString *propertyType = [NSString stringWithUTF8String:ivar_getTypeEncoding(ivar)];
        // user:NSDictionary
        // 二级转换
        // 值是字典,成员属性的类型不是字典,才需要转换成模型
        if ([value isKindOfClass:[NSDictionary class]] && ![propertyType containsString:@"NS"]) { // 需要字典转换成模型
            
            //获取到的value的值实际为 @"@\"User\"" 需要截取为User
            NSRange range = [propertyType rangeOfString:@"\""];
            propertyType = [propertyType substringFromIndex:range.location + range.length];
            range = [propertyType rangeOfString:@"\""];
            propertyType = [propertyType substringToIndex:range.location];
            // 获取需要转换类的类对象
           Class modelClass =  NSClassFromString(propertyType);
            if (modelClass) {
                value =  [modelClass modelWithDict:value];
            }
        }
        if (value) {
            [objc setValue:value forKey:key];
        }
    }
    return objc;
}
@end

模型StatusModel.h

#import <Foundation/Foundation.h>
#import "User.h"

@interface StatusModel : NSObject
@property (nonatomic, assign) NSInteger ID;
@property (nonatomic, strong) NSString *source;

@property (nonatomic, assign) NSInteger 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;

@property (nonatomic, strong) NSDictionary *retweeted_status;

+ (__kindof StatusModel *)statusWithDict:(NSDictionary *)dict;
@end

StatusModel.m

#import "StatusModel.h"

@implementation StatusModel

+ (StatusModel *)statusWithDict:(NSDictionary *)dict {
    
    StatusModel *model = [[StatusModel alloc] init];
    [model setValuesForKeysWithDictionary:dict];
    return model;
}

//解决KVC字典转模型,字典里面的id键与系统的id冲突
- (void)setValue:(id)value forUndefinedKey:(NSString *)key {
    if ([key isEqualToString:@"id"]) {
        _ID = [value integerValue];
    }
}

@end

解析数据,转模型

- (void)viewDidLoad {
    [super viewDidLoad];

    NSString *filePath = [[NSBundle mainBundle] pathForResource:@"status.plist" ofType:nil];
    NSDictionary *dict = [NSDictionary dictionaryWithContentsOfFile:filePath];
    NSArray *dictArr = dict[@"statuses"];
    
    NSMutableArray *statuses = [NSMutableArray array];
    // 遍历字典数组
    for (NSDictionary *dict in dictArr) {
        StatusModel *status = [StatusModel modelWithDict:dict];
        [statuses addObject:status];
    }
    
}

相关文章

  • 使用runtime和KVC字典转模型

    使用KVC字典转模型的时候,KVC是通过遍历字典中的所有的key去模型中查找有没有对应的属性名,而runtime则...

  • KVC的简单使用

    KVC字典转模型 KVC 中经常使用的就是字典转模型 KVC的大招 KVC设置对象属性及取值 KVC间接设置对象属...

  • 14-Swift中字典转模型

    字典转模型(初始化时传入字典) 字典转模型(利用KVC转化) 一、 普通的字典转模型: 二、利用KVC字典转模型:

  • runtime -- 实现字典转模型

    runtime与KVC字典转模型的区别:1.KVC:遍历字典中所有的key,去模型中查找有没有对应的属性名。2.r...

  • 关于iOS字典转模型几种方法

    别人写的,写的不错,收藏一波 1:KVC 2:runTime字典转模型 先说说两种的不同:KVC是遍历字典中的k...

  • iOS 字典转模型KVC实现

    字典转模型 KVC 实现 KVC 字典转模型弊端:必须保证,模型中的属性和字典中的key一一对应。 如果不一致,就...

  • Runtime 的一些用法

    一. 字典转模型 利用Runtime遍历所有的属性或者成员变量利用KVC设值 二. 设置和获取成员变量的值 obj...

  • iOS KVC运用

    主要应用场景 KVC 属性赋值 添加和访问私有成员变量(ivar) 字典转模型 取值 模型转字典 集合操作符 自定...

  • runtime 在实际工作中的运用

    使用runtime 前提导入头文件 #import 在不使用第三方字典转模型(Y...

  • RunTime与快速字典转模型(KVC)

    运用场景:说道字典字典转模型属性,有时候模型属性非常多的时候应用这个知识比一个一个来写快的多。 方式一:快速字典转...

网友评论

      本文标题:使用runtime和KVC字典转模型

      本文链接:https://www.haomeiwen.com/subject/edffjttx.html