iOS 開(kāi)發(fā):『Runtime』詳解(四)獲取類詳細(xì)屬性琅轧、方法

本文用來(lái)介紹 iOS 開(kāi)發(fā)中废封,如何通過(guò)『Runtime』獲取類詳細(xì)屬性哮肚、方法认轨。通過(guò)本文璃诀,您將了解到:

  1. 獲取類詳細(xì)屬性、方法簡(jiǎn)述
  2. 獲取類詳細(xì)屬性谷暮、方法(成員變量列表蒿往、屬性列表、方法列表湿弦、所遵循的協(xié)議列表)
  3. 應(yīng)用場(chǎng)景
    3.1 修改私有屬性
    3.2 萬(wàn)能控制器跳轉(zhuǎn)
    3.3 實(shí)現(xiàn)字典轉(zhuǎn)模型
    3.4 改進(jìn) iOS 歸檔和解檔

文中示例代碼在: bujige / YSC-Class-DetailList-Demo


1. 獲取類詳細(xì)屬性瓤漏、方法簡(jiǎn)述

在蘋果官方為我們提供的類中,只能獲取一小部分公開(kāi)的屬性和方法。有些我們恰好需要的屬性和方法蔬充,可能會(huì)被官方隱藏了起來(lái)蝶俱,沒(méi)有直接提供給我們。

那應(yīng)該如何才能獲取一個(gè)類中所有的變量和方法饥漫,用來(lái)查找是否有對(duì)我們有用的變量和方法呢榨呆?

幸好 Runtime 中為我們提供了一系列 API 來(lái)獲取 Class (類)的 成員變量( Ivar )、屬性( Property )庸队、方法( Method )积蜻、協(xié)議( Protocol ) 等。我們可以通過(guò)這些方法來(lái)遍歷一個(gè)類中的成員變量列表彻消、屬性列表竿拆、方法列表、協(xié)議列表宾尚。從而查找我們需要的變量和方法丙笋。

比如說(shuō)遇到這樣一個(gè)需求:更改 UITextField 占位文字的顏色和字號(hào)。實(shí)現(xiàn)代碼參考 3.1 修改私有屬性 中的例子煌贴。

下面我們先來(lái)講解一下如何通過(guò)代碼獲取類詳細(xì)屬性不见、方法。


2. 獲取類詳細(xì)屬性崔步、方法

注意:頭文件中需引入 #import <objc/runtime.h>稳吮。

2.1 獲取類的成員變量列表

// 打印成員變量列表
- (void)printIvarList {
    unsigned int count;
    
    Ivar *ivarList = class_copyIvarList([self class], &count);
    for (unsigned int i = 0; i < count; i++) {
        Ivar myIvar = ivarList[i];
        const char *ivarName = ivar_getName(myIvar);
        NSLog(@"ivar(%d) : %@", i, [NSString stringWithUTF8String:ivarName]);
    }
    
    free(ivarList);
}

2.2 獲取類的屬性列表

// 打印屬性列表
- (void)printPropertyList {
    unsigned int count;
    
    objc_property_t *propertyList = class_copyPropertyList([self class], &count);
    for (unsigned int i = 0; i < count; i++) {
        const char *propertyName = property_getName(propertyList[i]);
        NSLog(@"propertyName(%d) : %@", i, [NSString stringWithUTF8String:propertyName]);
    }
    
    free(propertyList);
}

2.3 獲取類的方法列表

// 打印方法列表
- (void)printMethodList {
    unsigned int count;
    
    Method *methodList = class_copyMethodList([self class], &count);
    for (unsigned int i = 0; i < count; i++) {
        Method method = methodList[i];
        NSLog(@"method(%d) : %@", i, NSStringFromSelector(method_getName(method)));
    }
    
    free(methodList);
}

2.4 獲取類所遵循的協(xié)議列表

// 打印協(xié)議列表
- (void)printProtocolList {
    unsigned int count;
    
    __unsafe_unretained Protocol **protocolList = class_copyProtocolList([self class], &count);
    for (unsigned int i = 0; i < count; i++) {
        Protocol *myProtocal = protocolList[i];
        const char *protocolName = protocol_getName(myProtocal);
        NSLog(@"protocol(%d) : %@", i, [NSString stringWithUTF8String:protocolName]);
    }
    
    free(protocolList);
}

3. 應(yīng)用場(chǎng)景

3.1 修改私有屬性

需求:更改 UITextField 占位文字的顏色和字號(hào)

先來(lái)想想又幾種做法:

方法 1:通過(guò) attributedPlaceholder 屬性修改

我們知道 UITextField 中有 placeholder 屬性和 attributedPlaceholder 屬性。通過(guò) placeholder 屬性只能更改占位文字井濒,無(wú)法修改占位文字的字體和顏色灶似。而通過(guò) attributedPlaceholder 屬性我們就可以修改 UITextField 占位文字的顏色和字號(hào)了。

方法 2:重寫 UITextField 的 drawPlaceholderInRect: 方法修改

實(shí)現(xiàn)步驟:

  1. 自定義一個(gè) XXTextField 繼承自 UITextField瑞你;
  2. 重寫自定義 XXTextField 的 drawPlaceholderInRect: 方法酪惭;
  3. 在 drawPlaceholderInRect 方法中設(shè)置 placeholder 的屬性。
- (void)drawPlaceholderInRect:(CGRect)rect {
    
    // 計(jì)算占位文字的 Size
    NSDictionary *attributes = @{
                                 NSForegroundColorAttributeName : [UIColor lightGrayColor],
                                 NSFontAttributeName : [UIFont systemFontOfSize:15]
                                 };
    CGSize placeholderSize = [self.placeholder sizeWithAttributes:attributes];
    
    [self.placeholder drawInRect:CGRectMake(0, (rect.size.height - placeholderSize.height)/2, rect.size.width, rect.size.height) withAttributes: attributes];
}

方法 3:利用 Runtime者甲,找到并修改 UITextfield 的私有屬性

實(shí)現(xiàn)步驟:

  1. 通過(guò)獲取類的屬性列表和成員變量列表的方法打印 UITextfield 所有屬性和成員變量春感;
  2. 找到私有的成員變量 _placeholderLabel
  3. 利用 KVC 對(duì) _placeholderLabel 進(jìn)行修改虏缸。
// 打印 UITextfield 的所有屬性和成員變量
- (void)printUITextFieldList {
    unsigned int count;
    
    Ivar *ivarList = class_copyIvarList([UITextField class], &count);
    for (unsigned int i = 0; i < count; i++) {
        Ivar myIvar = ivarList[i];
        const char *ivarName = ivar_getName(myIvar);
        NSLog(@"ivar(%d) : %@", i, [NSString stringWithUTF8String:ivarName]);
    }
    
    free(ivarList);
    
    objc_property_t *propertyList = class_copyPropertyList([UITextField class], &count);
    for (unsigned int i = 0; i < count; i++) {
        const char *propertyName = property_getName(propertyList[i]);
        NSLog(@"propertyName(%d) : %@", i, [NSString stringWithUTF8String:propertyName]);
    }
    
    free(propertyList);
}

// 通過(guò)修改 UITextfield 的私有屬性更改占位顏色和字體
- (void)createLoginTextField {
    UITextField *loginTextField = [[UITextField alloc] init];
    loginTextField.frame = CGRectMake(15,(self.view.bounds.size.height-52-50)/2, self.view.bounds.size.width-60-18,52);
    loginTextField.delegate = self;
    loginTextField.font = [UIFont systemFontOfSize:14];
    loginTextField.contentVerticalAlignment = UIControlContentVerticalAlignmentCenter;
    loginTextField.textColor = [UIColor blackColor];
    
    loginTextField.placeholder = @"用戶名/郵箱";
    [loginTextField setValue:[UIFont systemFontOfSize:15] forKeyPath:@"_placeholderLabel.font"];
    [loginTextField setValue:[UIColor lightGrayColor]forKeyPath:@"_placeholderLabel.textColor"];
    
    [self.view addSubview:loginTextField];
}

3.2 萬(wàn)能控制器跳轉(zhuǎn)

需求:

  1. 某個(gè)頁(yè)面的不同 banner 圖鲫懒,點(diǎn)擊可以跳轉(zhuǎn)到不同頁(yè)面。
  2. 推送通知刽辙,點(diǎn)擊跳轉(zhuǎn)到指定頁(yè)面窥岩。
  3. 二維碼掃描,根據(jù)不同內(nèi)容宰缤,跳轉(zhuǎn)不同頁(yè)面颂翼。
  4. WebView 頁(yè)面晃洒,根據(jù) URL 點(diǎn)擊不同,跳轉(zhuǎn)不同的原生頁(yè)面朦乏。

先來(lái)思考一下幾種解決方法球及。

方法 1:在每個(gè)需要跳轉(zhuǎn)的地方寫一堆判斷語(yǔ)句以及跳轉(zhuǎn)語(yǔ)句。

方法 2:將判斷語(yǔ)句和跳轉(zhuǎn)語(yǔ)句抽取出來(lái)呻疹,寫到基類吃引,或者對(duì)應(yīng)的 Category 中。

方法 3:利用 Runtime诲宇,定制一個(gè)萬(wàn)能跳轉(zhuǎn)控制器工具际歼。

實(shí)現(xiàn)步驟:

  1. 事先和服務(wù)器端商量好惶翻,定義跳轉(zhuǎn)不同控制器的規(guī)則姑蓝,讓服務(wù)器傳回對(duì)應(yīng)規(guī)則的相關(guān)參數(shù)。
    比如:跳轉(zhuǎn)到 A 控制器吕粗,需要服務(wù)器傳回 A 控制器的類名纺荧,控制器 A 需要傳入的屬性參數(shù)(id、type 等等)颅筋。
  2. 根據(jù)服務(wù)器傳回的類名宙暇,創(chuàng)建對(duì)應(yīng)的控制器對(duì)象;
  3. 遍歷服務(wù)器傳回的參數(shù)议泵,利用 Runtime 遍歷控制器對(duì)象的屬性列表占贫;
  4. 如果控制器對(duì)象存在該屬性,則利用 KVC 進(jìn)行賦值先口;
  5. 進(jìn)行跳轉(zhuǎn)型奥。

首先,定義跳轉(zhuǎn)規(guī)則碉京,如下所示厢汹。XXViewController 是將要跳轉(zhuǎn)的控制器類名。property 字典中保存的是控制器所需的屬性參數(shù)谐宙。

// 定義的規(guī)則
NSDictionary *params = @{
                         @"class" : @"XXViewController",
                         @"property" : @{
                                 @"ID" : @"123",
                                 @"type" : @"XXViewController1"
                                 }
                         };

然后烫葬,添加一個(gè)工具類 XXJumpControllerTool,添加跳轉(zhuǎn)相關(guān)的類方法凡蜻。

/********************* XXJumpControllerTool.h 文件 *********************/

#import <Foundation/Foundation.h>

@interface XXJumpControllerTool : NSObject

+ (void)pushViewControllerWithParams:(NSDictionary *)params;

@end


/********************* XXJumpControllerTool.m 文件 *********************/

#import "XXJumpControllerTool.h"
#import <UIKit/UIKit.h>
#import <objc/runtime.h>

@implementation XXJumpControllerTool

+ (void)pushViewControllerWithParams:(NSDictionary *)params {
    // 取出控制器類名
    NSString *classNameStr = [NSString stringWithFormat:@"%@", params[@"class"]];
    const char *className = [classNameStr cStringUsingEncoding:NSASCIIStringEncoding];
    
    // 根據(jù)字符串返回一個(gè)類
    Class newClass = objc_getClass(className);
    if (!newClass) {
        // 創(chuàng)建一個(gè)類
        Class superClass = [NSObject class];
        newClass = objc_allocateClassPair(superClass, className, 0);
        // 注冊(cè)你創(chuàng)建的這個(gè)類
        objc_registerClassPair(newClass);
    }

    // 創(chuàng)建對(duì)象(就是控制器對(duì)象)
    id instance = [[newClass alloc] init];
    
    NSDictionary *propertys = params[@"property"];
    [propertys enumerateKeysAndObjectsUsingBlock:^(id key, id obj, BOOL *stop) {
        // 檢測(cè)這個(gè)對(duì)象是否存在該屬性
        if ([XXJumpControllerTool checkIsExistPropertyWithInstance:instance verifyPropertyName:key]) {
            // 利用 KVC 對(duì)控制器對(duì)象的屬性賦值
            [instance setValue:obj forKey:key];
        }
    }];
    
    
    // 跳轉(zhuǎn)到對(duì)應(yīng)的控制器
    [[XXJumpControllerTool topViewController].navigationController pushViewController:instance animated:YES];
}


// 檢測(cè)對(duì)象是否存在該屬性
+ (BOOL)checkIsExistPropertyWithInstance:(id)instance verifyPropertyName:(NSString *)verifyPropertyName {
    unsigned int count, i;
    
    // 獲取對(duì)象里的屬性列表
    objc_property_t *properties = class_copyPropertyList([instance class], &count);
    
    for (i = 0; i < count; i++) {
        objc_property_t property =properties[i];
        //  屬性名轉(zhuǎn)成字符串
        NSString *propertyName = [[NSString alloc] initWithCString:property_getName(property) encoding:NSUTF8StringEncoding];
        // 判斷該屬性是否存在
        if ([propertyName isEqualToString:verifyPropertyName]) {
            free(properties);
            return YES;
        }
    }
    free(properties);
    
    return NO;
}

// 獲取當(dāng)前顯示在屏幕最頂層的 ViewController
+ (UIViewController *)topViewController {
    UIViewController *resultVC = [XXJumpControllerTool _topViewController:[[UIApplication sharedApplication].keyWindow rootViewController]];
    while (resultVC.presentedViewController) {
        resultVC = [XXJumpControllerTool _topViewController:resultVC.presentedViewController];
    }
    return resultVC;
}

+ (UIViewController *)_topViewController:(UIViewController *)vc {
    if ([vc isKindOfClass:[UINavigationController class]]) {
        return [XXJumpControllerTool _topViewController:[(UINavigationController *)vc topViewController]];
    } else if ([vc isKindOfClass:[UITabBarController class]]) {
        return [XXJumpControllerTool _topViewController:[(UITabBarController *)vc selectedViewController]];
    } else {
        return vc;
    }
    return nil;
}

@end

測(cè)試代碼:

- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event {
    // 萬(wàn)能跳轉(zhuǎn)控制器
    [self jumpController];
}

3.3 實(shí)現(xiàn)字典轉(zhuǎn)模型

在日常開(kāi)發(fā)中搭综,將網(wǎng)絡(luò)請(qǐng)求中獲取的 JSON 數(shù)據(jù)轉(zhuǎn)為數(shù)據(jù)模型,是我們開(kāi)發(fā)中必不可少的操作划栓。通常我們會(huì)選用諸如 YYModel设凹、JSONModel 或者 MJExtension 等第三方框架來(lái)實(shí)現(xiàn)這一過(guò)程。這些框架實(shí)現(xiàn)原理的核心就是 RuntimeKVC茅姜,以及 Getter / Setter闪朱。

實(shí)現(xiàn)的大體思路如下:借助 Runtime 可以動(dòng)態(tài)獲取成員列表的特性月匣,遍歷模型中所有屬性,然后以獲取到的屬性名為 key奋姿,在 JSON 字典中尋找對(duì)應(yīng)的值 value锄开;再使用 KVC 或直接調(diào)用 Getter / Setter 將每一個(gè)對(duì)應(yīng) value 賦值給模型,就完成了字典轉(zhuǎn)模型的目的称诗。

需求:將服務(wù)器返回的 JSON 字典轉(zhuǎn)為數(shù)據(jù)模型萍悴。

先準(zhǔn)備一份待解析的 JSON 數(shù)據(jù),內(nèi)容如下:

{
    "id": "123412341234",
    "name": "行走少年郎",
    "age": "18",
    "weight": 120,
    "address": {
        "country": "中國(guó)",
        "province": "北京"
    },
    "courses": [
        {
            "name": "Chinese",
            "desc": "語(yǔ)文課"
        },
        {
            "name": "Math",
            "desc": "數(shù)學(xué)課"
        },
        {
            "name": "English",
            "desc": "英語(yǔ)課"
        }
    ]
}

假設(shè)這就是服務(wù)器返回的 JSON 數(shù)據(jù)寓免,內(nèi)容是一個(gè)學(xué)生的信息⊙⒂眨現(xiàn)在我們需要將該 JSON 字典轉(zhuǎn)為方便開(kāi)發(fā)的數(shù)據(jù)模型。

從這份 JSON 中可以看出袜香,字典中取值除了字符串之外撕予,還有數(shù)組和字典。那么在將字典轉(zhuǎn)換成數(shù)據(jù)模型的時(shí)候蜈首,就要考慮 模型嵌套模型实抡、模型嵌套模型數(shù)組 的情況了。具體步驟如下:

3.3.1 創(chuàng)建模型

經(jīng)過(guò)分析欢策,我們總共需要三個(gè)模型: XXStudentModel吆寨、XXAdressModel、XXCourseModel踩寇。

/********************* XXStudentModel.h 文件 *********************/
#import <Foundation/Foundation.h>
#import "NSObject+XXModel.h"
@class XXAdressModel, XXCourseModel;

@interface XXStudentModel : NSObject <XXModel>

/* 姓名 */
@property (nonatomic, copy) NSString *name;
/* 學(xué)生號(hào) id */
@property (nonatomic, copy) NSString *uid;
/* 年齡 */
@property (nonatomic, assign) NSInteger age;
/* 體重 */
@property (nonatomic, assign) NSInteger weight;
/* 地址(嵌套模型) */
@property (nonatomic, strong) XXAdressModel *address;
/* 課程(嵌套模型數(shù)組) */
@property (nonatomic, strong) NSArray *courses;

@end

/********************* XXStudentModel.m 文件 *********************/
#import "XXStudentModel.h"
#import "XXCourseModel.h"

@implementation XXStudentModel

+ (NSDictionary *)modelContainerPropertyGenericClass {
    //需要特別處理的屬性
    return @{
             @"courses" : [XXCourseModel class],
             @"uid" : @"id"
             };
}

@end


/********************* XXAdressModel.h 文件 *********************/
#import <Foundation/Foundation.h>

@interface XXAdressModel : NSObject

/* 國(guó)籍 */
@property (nonatomic, copy) NSString *country;
/* 省份 */
@property (nonatomic, copy) NSString *province;
/* 城市 */
@property (nonatomic, copy) NSString *city;

@end


/********************* XXAdressModel.m 文件 *********************/
#import "XXAdressModel.h"

@implementation XXAdressModel

@end


/********************* XXCourseModel.h 文件 *********************/
#import <Foundation/Foundation.h>

@interface XXCourseModel : NSObject

/* 課程名 */
@property (nonatomic, copy) NSString *name;
/* 課程介紹 */
@property (nonatomic, copy) NSString *desc;

@end

/********************* XXCourseModel.m 文件 *********************/
#import "XXCourseModel.h"

@implementation XXCourseModel

@end

3.3.2 在 NSObject 分類中實(shí)現(xiàn)字典轉(zhuǎn)模型

細(xì)心的你可能已經(jīng)發(fā)現(xiàn):上面的 XXStudentModel.h 文件中導(dǎo)入了 #import "NSObject+XXModel.h" 文件啄清,并且遵循了 <XXModel> 協(xié)議,并且在 XXStudentModel.m 文件中實(shí)現(xiàn)了協(xié)議的 + (NSDictionary *)modelContainerPropertyGenericClass 方法俺孙。

NSObject+XXModel.h辣卒、NSObject+XXModel.m 就是我們用來(lái)解決字典轉(zhuǎn)模型所創(chuàng)建的分類,協(xié)議中的 + (NSDictionary *)modelContainerPropertyGenericClass 方法用來(lái)告訴分類特殊字段的處理規(guī)則鼠冕,比如 id --> uid添寺。

/********************* NSObject+XXModel.h 文件 *********************/
#import <Foundation/Foundation.h>

// XXModel 協(xié)議
@protocol XXModel <NSObject>

@optional
// 協(xié)議方法:返回一個(gè)字典,表明特殊字段的處理規(guī)則
+ (nullable NSDictionary<NSString *, id> *)modelContainerPropertyGenericClass;

@end;

@interface NSObject (XXModel)

// 字典轉(zhuǎn)模型方法
+ (instancetype)xx_modelWithDictionary:(NSDictionary *)dictionary;

@end
/********************* NSObject+XXModel.m 文件 *********************/
#import "NSObject+XXModel.h"
#import <objc/runtime.h>

@implementation NSObject (XXModel)

+ (instancetype)xx_modelWithDictionary:(NSDictionary *)dictionary {
    
    // 創(chuàng)建當(dāng)前模型對(duì)象
    id object = [[self alloc] init];
    
    unsigned int count;
    
    // 獲取當(dāng)前對(duì)象的屬性列表
    objc_property_t *propertyList = class_copyPropertyList([self class], &count);
    
    // 遍歷 propertyList 中所有屬性懈费,以其屬性名為 key计露,在字典中查找 value
    for (unsigned int i = 0; i < count; i++) {
        // 獲取屬性
        objc_property_t property = propertyList[i];
        const char *propertyName = property_getName(property);
        
        NSString *propertyNameStr = [NSString stringWithUTF8String:propertyName];
        
        // 獲取 JSON 中屬性值 value
        id value = [dictionary objectForKey:propertyNameStr];
        
        // 獲取屬性所屬類名
        NSString *propertyType;
        unsigned int attrCount;
        objc_property_attribute_t *attrs = property_copyAttributeList(property, &attrCount);
        for (unsigned int i = 0; i < attrCount; i++) {
            switch (attrs[i].name[0]) {
                case 'T': { // Type encoding
                    if (attrs[i].value) {
                        propertyType = [NSString stringWithUTF8String:attrs[i].value];
                        // 去除轉(zhuǎn)義字符:@\"NSString\" -> @"NSString"
                        propertyType = [propertyType stringByReplacingOccurrencesOfString:@"\"" withString:@""];
                        // 去除 @ 符號(hào)
                        propertyType = [propertyType stringByReplacingOccurrencesOfString:@"@" withString:@""];
                        
                    }
                } break;
                default: break;
            }
        }
        
        // 對(duì)特殊屬性進(jìn)行處理
        // 判斷當(dāng)前類是否實(shí)現(xiàn)了協(xié)議方法,獲取協(xié)議方法中規(guī)定的特殊屬性的處理方式
        NSDictionary *perpertyTypeDic;
        if([self respondsToSelector:@selector(modelContainerPropertyGenericClass)]){
            perpertyTypeDic = [self performSelector:@selector(modelContainerPropertyGenericClass) withObject:nil];
        }
        
        // 處理:字典的 key 與模型屬性不匹配的問(wèn)題憎乙,如 id -> uid
        id anotherName = perpertyTypeDic[propertyNameStr];
        if(anotherName && [anotherName isKindOfClass:[NSString class]]){
            value =  dictionary[anotherName];
        }

        // 處理:模型嵌套模型的情況
        if ([value isKindOfClass:[NSDictionary class]] && ![propertyType hasPrefix:@"NS"]) {
            Class modelClass = NSClassFromString(propertyType);
            if (modelClass != nil) {
                // 將被嵌套字典數(shù)據(jù)也轉(zhuǎn)化成Model
                value = [modelClass xx_modelWithDictionary:value];
            }
        }

        // 處理:模型嵌套模型數(shù)組的情況
        // 判斷當(dāng)前 value 是一個(gè)數(shù)組票罐,而且存在協(xié)議方法返回了 perpertyTypeDic
        if ([value isKindOfClass:[NSArray class]] && perpertyTypeDic) {
            Class itemModelClass = perpertyTypeDic[propertyNameStr];
            //封裝數(shù)組:將每一個(gè)子數(shù)據(jù)轉(zhuǎn)化為 Model
            NSMutableArray *itemArray = @[].mutableCopy;
            for (NSDictionary *itemDic  in value) {
                id model = [itemModelClass xx_modelWithDictionary:itemDic];
                [itemArray addObject:model];
            }
            value = itemArray;
        }

        // 使用 KVC 方法將 value 更新到 object 中
        if (value != nil) {
            [object setValue:value forKey:propertyNameStr];
        }
        
    }
    free(propertyList);
    
    return object;
}

@end

3.3.3 測(cè)試代碼

- (void)parseJSON {
    
    NSString *filePath = [[NSBundle mainBundle] pathForResource:@"Student" ofType:@"json"];
    NSData *jsonData = [NSData dataWithContentsOfFile:filePath];

    // 讀取 JSON 數(shù)據(jù)
    NSDictionary *json = [NSJSONSerialization JSONObjectWithData:jsonData options:NSJSONReadingMutableContainers error:nil];
    NSLog(@"%@",json);

    // JSON 字典轉(zhuǎn)模型
    XXStudentModel *student = [XXStudentModel xx_modelWithDictionary:json];

    NSLog(@"student.uid = %@", student.uid);
    NSLog(@"student.name = %@", student.name);

    for (unsigned int i = 0; i < student.courses.count; i++) {
        XXCourseModel *courseModel = student.courses[i];
        NSLog(@"courseModel[%d].name = %@ .desc = %@", i, courseModel.name, courseModel.desc);
    }
}

效果如下:

當(dāng)然,如若需要考慮緩存機(jī)制泞边、性能問(wèn)題该押、對(duì)象類型檢查等,建議還是使用例如 YYModel 之類的知名第三方框架阵谚,或者自己造輪子蚕礼。


3.4 改進(jìn) iOS 歸檔和解檔

『歸檔』是一種常用的輕量型文件存儲(chǔ)方式烟具,在項(xiàng)目中,如果需要將數(shù)據(jù)模型本地化存儲(chǔ)奠蹬,一般就會(huì)用到歸檔和解檔朝聋。但是如果數(shù)據(jù)模型中有多個(gè)屬性的話,我們不得不對(duì)每個(gè)屬性進(jìn)行處理囤躁,這個(gè)過(guò)程非常繁瑣冀痕。

這里我們可以參考之前『字典轉(zhuǎn)模型』 的代碼。通過(guò) Runtime 獲取類的屬性列表狸演,實(shí)現(xiàn)自動(dòng)歸檔和解檔言蛇。歸檔操作和解檔操作主要會(huì)用到了兩個(gè)方法: encodeObject: forKey:decodeObjectForKey:

首先在 NSObject 的分類 NSObject+XXModel.h宵距、NSObject+XXModel.m 中添加以下代碼:

// 解檔
- (instancetype)xx_modelInitWithCoder:(NSCoder *)aDecoder {
    if (!aDecoder) return self;
    if (!self) {
        return self;
    }
    
    unsigned int count;
    objc_property_t *propertyList = class_copyPropertyList([self class], &count);
    for (unsigned int i = 0; i < count; i++) {
        const char *propertyName = property_getName(propertyList[i]);
        NSString *name = [NSString stringWithUTF8String:propertyName];
        
        id value = [aDecoder decodeObjectForKey:name];
        [self setValue:value forKey:name];
    }
    free(propertyList);
    
    return self;
}

// 歸檔
- (void)xx_modelEncodeWithCoder:(NSCoder *)aCoder {
    if (!aCoder) return;
    if (!self) {
        return;
    }
    unsigned int count;
    objc_property_t *propertyList = class_copyPropertyList([self class], &count);
    for (unsigned int i = 0; i < count; i++) {
        const char *propertyName = property_getName(propertyList[i]);
        NSString *name = [NSString stringWithUTF8String:propertyName];
        
        id value = [self valueForKey:name];
        [aCoder encodeObject:value forKey:name];
    }
    free(propertyList);
}

然后在需要實(shí)現(xiàn)歸檔解檔的模型中腊尚,添加 -initWithCoder:-encodeWithCoder: 方法。

#import "XXPerson.h"
#import "NSObject+XXModel.h"

@implementation XXPerson

- (instancetype)initWithCoder:(NSCoder *)aDecoder {
    self = [super init];
    if (self) {
        [self xx_modelInitWithCoder:aDecoder];
    }
    return self;
}

- (void)encodeWithCoder:(NSCoder *)aCoder {
    [self xx_modelEncodeWithCoder:aCoder];
}

@end

測(cè)試一下歸檔解檔代碼:

XXPerson *person = [[XXPerson alloc] init];
person.uid = @"123412341234";
person.name = @"行走少年郎";
person.age = 18;
person.weight = 120;

// 歸檔
NSString *path = [NSString stringWithFormat:@"%@/person.plist", NSHomeDirectory()];
[NSKeyedArchiver archiveRootObject:person toFile:path];

// 解檔
XXPerson *personObject = [NSKeyedUnarchiver unarchiveObjectWithFile:path];

NSLog(@"personObject.uid = %@", personObject.uid);
NSLog(@"personObject.name = %@", personObject.name);

當(dāng)然消玄,上邊代碼只是演示一下 Runtime 對(duì)于歸檔和解檔的優(yōu)化跟伏,真正用在開(kāi)發(fā)中的邏輯遠(yuǎn)比上邊的樣例要負(fù)責(zé)丢胚,具體也參考 YYModel 的實(shí)現(xiàn)翩瓜。


參考資料


iOS 開(kāi)發(fā):『Runtime』詳解 系列文章:

尚未完成:

  • iOS 開(kāi)發(fā):『Runtime』詳解(五)Crash 防護(hù)系統(tǒng)
  • iOS 開(kāi)發(fā):『Runtime』詳解(六)Objective-C 2.0 結(jié)構(gòu)解析
  • iOS 開(kāi)發(fā):『Runtime』詳解(七)KVO 底層實(shí)現(xiàn)

  • 本文作者: 行走少年郎
  • 本文鏈接: http://www.reibang.com/p/aeecc4b4621c
  • 版權(quán)聲明: 本文章采用 CC BY-NC-SA 3.0 許可協(xié)議携龟。轉(zhuǎn)載請(qǐng)?jiān)谖淖珠_(kāi)頭注明『本文作者』和『本文鏈接』兔跌!
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市峡蟋,隨后出現(xiàn)的幾起案子坟桅,更是在濱河造成了極大的恐慌,老刑警劉巖蕊蝗,帶你破解...
    沈念sama閱讀 206,839評(píng)論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件仅乓,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡蓬戚,警方通過(guò)查閱死者的電腦和手機(jī)夸楣,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,543評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)子漩,“玉大人豫喧,你說(shuō)我怎么就攤上這事〈逼茫” “怎么了紧显?”我有些...
    開(kāi)封第一講書(shū)人閱讀 153,116評(píng)論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)缕棵。 經(jīng)常有香客問(wèn)我孵班,道長(zhǎng)涉兽,這世上最難降的妖魔是什么? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 55,371評(píng)論 1 279
  • 正文 為了忘掉前任篙程,我火速辦了婚禮花椭,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘房午。我一直安慰自己矿辽,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,384評(píng)論 5 374
  • 文/花漫 我一把揭開(kāi)白布郭厌。 她就那樣靜靜地躺著袋倔,像睡著了一般。 火紅的嫁衣襯著肌膚如雪折柠。 梳的紋絲不亂的頭發(fā)上宾娜,一...
    開(kāi)封第一講書(shū)人閱讀 49,111評(píng)論 1 285
  • 那天,我揣著相機(jī)與錄音扇售,去河邊找鬼前塔。 笑死,一個(gè)胖子當(dāng)著我的面吹牛承冰,可吹牛的內(nèi)容都是我干的华弓。 我是一名探鬼主播,決...
    沈念sama閱讀 38,416評(píng)論 3 400
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼困乒,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼寂屏!你這毒婦竟也來(lái)了?” 一聲冷哼從身側(cè)響起娜搂,我...
    開(kāi)封第一講書(shū)人閱讀 37,053評(píng)論 0 259
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤迁霎,失蹤者是張志新(化名)和其女友劉穎,沒(méi)想到半個(gè)月后百宇,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體考廉,經(jīng)...
    沈念sama閱讀 43,558評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,007評(píng)論 2 325
  • 正文 我和宋清朗相戀三年携御,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了昌粤。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,117評(píng)論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡因痛,死狀恐怖婚苹,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情鸵膏,我是刑警寧澤膊升,帶...
    沈念sama閱讀 33,756評(píng)論 4 324
  • 正文 年R本政府宣布,位于F島的核電站谭企,受9級(jí)特大地震影響廓译,放射性物質(zhì)發(fā)生泄漏评肆。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,324評(píng)論 3 307
  • 文/蒙蒙 一非区、第九天 我趴在偏房一處隱蔽的房頂上張望瓜挽。 院中可真熱鬧,春花似錦征绸、人聲如沸久橙。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,315評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)淆衷。三九已至,卻和暖如春渤弛,著一層夾襖步出監(jiān)牢的瞬間祝拯,已是汗流浹背。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,539評(píng)論 1 262
  • 我被黑心中介騙來(lái)泰國(guó)打工她肯, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留佳头,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 45,578評(píng)論 2 355
  • 正文 我出身青樓晴氨,卻偏偏與公主長(zhǎng)得像康嘉,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子瑞筐,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,877評(píng)論 2 345