iOS开发进阶-Runtime简介及应用详解

前言:
我们知道Objective-C调用方法是一种发消息的机制,编译器会把 [target doMethodWith:var1];转换为
objc_msgSend(target,@selector(doMethodWith:),var1)。本文简单介绍一下Runtime概念,并着重总结一下Runtime的实用技能。

一、Runtime基本概念

  1. RunTime简称运行时,就是系统在运行的时候的一些机制,其中最主要的是消息机制。
  2. 对于C语言,函数的调用在编译的时候会决定调用哪个函数,编译完成之后直接顺序执行,无任何二义性。
  3. OC的函数调用成为消息发送。属于动态调用过程。在编译的时候并不能决定真正调用哪个函数(事实证明,在编 译阶段,OC可以调用任何函数,即使这个函数并未实现,只要申明过就不会报错。而C语言在编译阶段就会报错)。
  4. 只有在真正运行的时候才会根据函数的名称找 到对应的函数来调用。
1、什么是runtime?

runtime是一套底层的C语言API,包含很多强大实用的C语言数据类型和C语言函数,平时我们编写的OC代码,底层都是基于runtime实现的。
runtime 是开源的,任何时候你都能从 http://opensource.apple.com. 获取。事实上查看 Objective-C 源码是理解它是如何工作的第一种方式,在这个问题上要比读苹果的文档要好。你可以下载适合 Mac OS X 10.6.2 的 objc4-437.1.tar.gz。(译注:最新objc4-551.1.tar.gz

2、常用头文件
 #import <objc/runtime.h> 包含对类、成员变量、属性、方法的操作
 #import <objc/message.h> 包含消息机制
3、常用方法
class_copyIvarList()返回一个指向类的成员变量数组的指针
class_copyPropertyList()返回一个指向类的属性数组的指针
里面有非常丰富的方法

二、实用技能

看到上面的截图可知Runtime的强大,方法组合几乎无所不能,抛砖引玉,结合相关资料和经验总结runtime比较常用的几个技能:

1. 获取类的全部成员变量
2. 获取类的全部属性名
3. 获取类的全部方法
4. 获取类遵循的全部协议
5. 动态改变成员变量
6. 动态交换类的方法
7. 动态添加新方法
8. 让category能够添加属性
9.更便捷的归档/解档

三、具体代码实现

我们新建一个Person类。Person.h:

#import <Foundation/Foundation.h>

@protocol personDelegate <NSObject>

- (void)personPayForFun:(NSInteger)money;

@end

@interface Person : NSObject

#pragma mark -属性
@property (nonatomic,assign) id<personDelegate> delegate;
@property (nonatomic,copy) NSString *name;//姓名
@property (nonatomic,copy) NSString *sex;//性别
@property (nonatomic,assign) NSInteger age;//年龄
@property (nonatomic,assign) float height;//身高
@property (nonatomic,copy) NSString *job;//工作
@property (nonatomic,copy) NSString *native;//籍贯

#pragma mark -方法
- (void)eat;
- (void)sleep;
- (NSString *)doSomeThing;
- (NSString *)doSomeOtherThing;

@end

person.m

#import "Person.h"
#import <objc/runtime.h>

@interface Person ()<NSCoding>

@property (nonatomic,copy) NSString *education;//学历 私有变量

@end

@implementation Person

- (void)eat{
}

- (void)sleep{
    NSLog(@"抓紧睡觉");
}

-(NSString *)doSomeThing{
    return @"我要去爬山";
}

- (NSString *)doSomeOtherThing{
    return @"我要去唱歌";
}

@end

1. 获取类的全部成员变量
runtime 可以获取一个类的所有成员变量名,包括私有的成员变量。

// 获取类的全部成员变量
- (IBAction)function1:(id)sender {
    unsigned int count;
    
    //获取成员变量的数组的指针
    Ivar *ivars = class_copyIvarList([Person class], &count);
    
    for (int i=0 ; i<count; i++) {
        Ivar ivar = ivars[i];
        //根据ivar获得其成员变量的名称
        const char *name = ivar_getName(ivar);
        //C的字符串转OC的字符串
        NSString *key = [NSString stringWithUTF8String:name];
        NSLog(@"%d == %@",i,key);
    }
    // 记得释放
    free(ivars);
    
    //如果你的成员私有,也可以获取到 比如_education
}

结果:


2. 获取类的全部属性名
同理,我们可以获取到一个类的全部属性名

//获取类的全部属性名
- (IBAction)function2:(id)sender {
    unsigned int count;
    
    //获得指向该类所有属性的指针
    objc_property_t *properties = class_copyPropertyList([Person class], &count);
    
    for (int i=0 ; i<count; i++) {
        //获得该类的一个属性的指针
        objc_property_t property = properties[i];
        //获取属性的名称
        const char *name = property_getName(property);
        //将C的字符串转为OC字符串
        NSString *key = [NSString stringWithUTF8String:name];
        
        NSLog(@"%d == %@",i,key);
    }
    // 记得释放
    free(properties);
}

打印结果:

3. 获取类的全部方法

//获取类的全部方法
- (IBAction)function3:(id)sender {
    unsigned int count;
    
    //获取指向该类的所有方法的数组指针
    Method *methods = class_copyMethodList([Person class], &count);
    
    for (int i = 0; i < count; i++) {
        //获取该类的一个方法的指针
        Method method = methods[i];
        //获取方法
        SEL methodSEL = method_getName(method);
        //将方法转换为C字符串
        const char *name = sel_getName(methodSEL);
        //将C字符串转为OC字符串
        NSString *methodName = [NSString stringWithUTF8String:name];
        
        //获取方法参数个数
        int arguments = method_getNumberOfArguments(method);
        
        NSLog(@"%d == %@ %d",i,methodName,arguments);
    }
    //记得释放
    free(methods);
    
}

打印结果:

runtime中一个方法最少有两个参数分别是 id self,SEL _cmd。

4. 获取类遵循的全部协议

 //获取类遵循的全部协议
- (IBAction)function4:(id)sender {
    unsigned int count;
    
    //获取指向该类遵循的所有协议的数组指针
    __unsafe_unretained Protocol **protocols = class_copyProtocolList([self class], &count);
    
    for (int i = 0; i < count; i++) {
        //获取该类遵循的一个协议指针
        Protocol *protocol = protocols[i];
        //获取C字符串协议名
        const char *name = protocol_getName(protocol);
        //C字符串转OC字符串
        NSString *protocolName = [NSString stringWithUTF8String:name];
        NSLog(@"%d == %@",i,protocolName);
    }
    //记得释放
    free(protocols);
}

5. 动态改变成员变量
可以修改成员变量的值,比如讲person的名字从张三 改成李四。

//动态改变成员变量
- (IBAction)function5:(id)sender {
    self.student.name = @"张三";
    
    unsigned int count = 0;
    Ivar *ivar = class_copyIvarList([self.student class], &count);
    for (int i = 0; i<count; i++) {
        Ivar var = ivar[i];
        const char *varName = ivar_getName(var);
        NSString *name = [NSString stringWithUTF8String:varName];
        
        if ([name isEqualToString:@"_name"]) {
            object_setIvar(self.student, var, @"李四");
            break;
        }
    }
    free(ivar);
    
    // 结果变成了 李四
    NSLog(@"student name %@",self.student.name);
    
}

结果:
2016-04-13 16:14:20.520 RunTimeDEMO[54516:3676553] student name 李四

6. 动态交换类的方法
可以直接修改自定义类或者系统类的方法。

//动态交换类两个方法
- (IBAction)function6:(id)sender {
    
    Method m1 = class_getInstanceMethod([Person class], @selector(doSomeThing));
    Method m2 = class_getInstanceMethod([Person class], @selector(doSomeOtherThing));
    
    method_exchangeImplementations(m1, m2);
    
    // 发现两个方交换了
    NSLog(@"student do something:%@",[self.student doSomeThing]);
    NSLog(@"student do doSomeOtherThing:%@",[self.student doSomeOtherThing]);

    // 运行时修改的是类,不是单一对象 一次修改 在下次编译前一直有效。
    Person *student2 = [Person new];
    NSLog(@"student do something:%@",[student2 doSomeThing]);
    NSLog(@"student do doSomeOtherThing:%@",[student2 doSomeOtherThing]);
    

    // 也可以在类目中添加自己方法去替换 类 或者系统类的方法

    [self.student sleep];
    
}

结果:
2016-04-13 16:17:50.841 RunTimeDEMO[54516:3676553] student do something:我要去唱歌
2016-04-13 16:17:50.841 RunTimeDEMO[54516:3676553] student do doSomeOtherThing:我要去爬山
2016-04-13 16:17:50.841 RunTimeDEMO[54516:3676553] student do something:我要去唱歌
2016-04-13 16:17:50.841 RunTimeDEMO[54516:3676553] student do doSomeOtherThing:我要去爬山
2016-04-13 16:17:50.842 RunTimeDEMO[54516:3676553] 睡个屁起来high

1、交换自己类中的两个方法:
在person中原来的方法是

-(NSString *)doSomeThing{
    return @"我要去爬山";
}
- (NSString *)doSomeOtherThing{
    return @"我要去唱歌";
}
- (void)sleep{
    NSLog(@"抓紧睡觉");
}

查看上面的结果发现 doSomeThing和doSomeOtherThing交换了。

2、类目中添加自己方法去替换 类 或者系统类的方法
sleep方法变成了 起来high。是因为我在person的category Person+addProperty.m中替换了sleep方法:

// 该方法在类或分类在第一次加载内存的时候自动调用
+ (void)load
{
    Method orginalMethod = class_getInstanceMethod([Person class], @selector(sleep));
    Method newMethod = class_getInstanceMethod([Person class], @selector(noSleep));
    
    method_exchangeImplementations(orginalMethod, newMethod);
}
- (void)noSleep{
    NSLog(@"睡个屁起来high");
}

7. 动态添加新方法
我们给person添加一个fromCity: 的方法:

//动态添加方法
- (IBAction)function7:(id)sender {

    class_addMethod([self.student class], @selector(fromCity:), (IMP)fromCityAnswer, "v@:@");
    if ([self.student respondsToSelector:@selector(fromCity:)]) {
        //Method method = class_getInstanceMethod([self.xiaoMing class], @selector(guess));
        [self.student performSelector:@selector(fromCity:) withObject:@"广州"];
        
    } else{
        NSLog(@"无法告诉你我从哪儿来");
    }
}

void fromCityAnswer(id self,SEL _cmd,NSString *str){
    
    NSLog(@"我来自:%@",str);
}

这里参数地方说明一下:
(IMP) fromCityAnswer 意思是fromCityAnswer的地址指针;
"v@:" 意思是,v代表无返回值void,如果是i则代表int;@代表 id sel; : 代表 SEL _cmd;
“v@:@” 意思是,一个参数的没有返回值。

控制台结果:
2016-04-13 16:27:59.401 RunTimeDEMO[54516:3676553] 我来自:广州

8. 让category能够添加属性
通过runtime 可以让category添加属性。是不是很棒的技能。
1、创建一个person的 category。
Person+addProperty.h

#import "Person.h"

@interface Person (addProperty)

// 英文名
@property (nonatomic, copy) NSString *englishName;

@end

2、Person+addProperty.m 中动态添加属性和实现方法

#import "Person+addProperty.h"
#import <objc/runtime.h>

@implementation Person (addProperty)

char eName;

- (void)setEnglishName:(NSString *)englishName
{
    objc_setAssociatedObject(self, &eName, englishName, OBJC_ASSOCIATION_COPY_NONATOMIC);
}

-(NSString *)englishName
{
    return objc_getAssociatedObject(self, &eName);
}

3、使用english属性 而原来person 是没有EnglishName这个属性的。

    self.student.englishName = @"xiaoMu Wang";
    NSLog(@"Student English name is %@",self.student.englishName);

9.更便捷的归档/解档
归档是存取数据的常用方法 参考:iOS归档
但是对于自定义对象的话在遵循NSCoding 协议,重写两个方法时候比较麻烦。
runtime有更好的方法解决这个问题,并且实现字典模型的自动转换。

在person.m中实现下面两个方法:

//注意:归档解档需要遵守<NSCoding>协议,实现以下两个方法
- (void)encodeWithCoder:(NSCoder *)encoder{
    //归档存储自定义对象
    unsigned int count = 0;
    //获得指向该类所有属性的指针
    objc_property_t *properties = class_copyPropertyList([Person class], &count);
    for (int i =0; i < count; i ++) {
        //获得
        objc_property_t property = properties[i];
        //根据objc_property_t获得其属性的名称--->C语言的字符串
        const char *name = property_getName(property);
        NSString *key = [NSString stringWithUTF8String:name];
        // 编码每个属性,利用kVC取出每个属性对应的数值
        [encoder encodeObject:[self valueForKeyPath:key] forKey:key];
    }
}

- (instancetype)initWithCoder:(NSCoder *)decoder{
    //归档存储自定义对象
    unsigned int count = 0;
    //获得指向该类所有属性的指针
    objc_property_t *properties = class_copyPropertyList([Person class], &count);
    for (int i =0; i < count; i ++) {
        objc_property_t property = properties[i];
        //根据objc_property_t获得其属性的名称--->C语言的字符串
        const char *name = property_getName(property);
        NSString *key = [NSString stringWithUTF8String:name];
        //解码每个属性,利用kVC取出每个属性对应的数值
        [self setValue:[decoder decodeObjectForKey:key] forKeyPath:key];
    }   
    return self;
}

代码调用:

//更便捷的归档/解档
- (IBAction)function9:(id)sender {
    Person *person = [[Person alloc] init];
    person.name = @"小木—boy";
    person.sex = @"男";
    person.age = 25;
    person.height = 180;
    person.job = @"iOS工程师";
    person.native = @"北京";
    
    NSString *docPath = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject];
    NSString *path = [NSString stringWithFormat:@"%@/archive",docPath];
    [NSKeyedArchiver archiveRootObject:person toFile:path];
    
    Person *unarchiverPerson = [NSKeyedUnarchiver unarchiveObjectWithFile:path];
    
    NSLog(@"unarchiverPerson == %@ %@",path,unarchiverPerson);
    
}

控制台结果:


调用结果

读完本文,相信你已经对runtime有了个比较简单的认识。demo稍后更新。


demo.png

源码地址:
** * https://github.com/yinwentao/RunTimeDEMO.git * **

参考:
http://www.henishuo.com/category/runtime/

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 196,820评论 5 462
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 82,756评论 2 374
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 143,901评论 0 325
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 52,718评论 1 267
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 61,592评论 5 358
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 46,437评论 1 275
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 36,836评论 3 388
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 35,483评论 0 254
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 39,770评论 1 293
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 34,801评论 2 314
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 36,588评论 1 328
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 32,427评论 3 315
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 37,852评论 3 300
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,064评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 30,363评论 1 255
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 41,843评论 2 343
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 41,055评论 2 338

推荐阅读更多精彩内容

  • 参考链接: http://www.cnblogs.com/ioshe/p/5489086.html 简介 Runt...
    乐乐的简书阅读 2,125评论 0 9
  • 对于从事 iOS 开发人员来说,所有的人都会答出【runtime 是运行时】什么情况下用runtime?大部分人能...
    梦夜繁星阅读 3,695评论 7 64
  • 目录 Objective-C Runtime到底是什么 Objective-C的元素认知 Runtime详解 应用...
    Ryan___阅读 1,925评论 1 3
  • 魏凯博客阅读 401评论 0 0
  • 我不畏爱情,只是怕被驯养,怕那会陪伴一生的牵挂。 (Ⅰ) 初遇《小王子》,还是初二时候的事,攒了一俩个月的零钱买了...
    喬江茗阅读 764评论 0 2