【进阶篇】iOS Runtime机制的使用
一.基本概念
1、RunTime简称运行时,就是系统在运行的时候的一些机制,其中最主要的是消息机制。
2、对于C语言,函数的调用在编译的时候会决定调用哪个函数,编译完成之后直接顺序执行,无任何二义性。
3、OC的函数调用成为消息发送。属于动态调用过程。在编译的时候并不能决定真正调用哪个函数(事实证明,在编 译阶段,OC可以调用任何函数,即使这个函数并未实现,只要申明过就不会报错。而C语言在编译阶段就会报错)。
4、只有在真正运行的时候才会根据函数的名称找 到对应的函数来调用.
官网文档还提供关于传统和现代版本Runtime的说明
1、In the legacy runtime, if you change the layout of instance variables in a class, you must recompile classes that inherit from it.
2、In the modern runtime, if you change the layout of instance variables in a class, you do not have to recompile classes that inherit from it.
In addition, the modern runtime supports instance variable synthesis for declared properties (see Declared Properties in The Objective-C Programming Language).
二.知晓OC的方法调用在Runtime中具体的实现
1.OC代码调用一个方法
[self.loginBt login];
2.在编译时RunTime会将上述代码转化成[发送消息]
objc_msgSend(self.loginB,@selector(login));
三.常见的作用
回到Runtime作用上。无所不能的事情就不一一介绍了,梳理下较为可能用的几个地方:
- 动态的添加对象的成员变量和方法
- 动态交换两个方法的实现
- 实现分类也可以添加属性
- 实现NSCoding的自动归档和解档
- 实现字典转模型的自动转换
四.编写代码实现
- 动态变量控制
1)Sense:
Teacher: What's your Chinese name?
XiaoMing: I have no one.
LiHua: You should have one.
LiHua: Your Chinese name is __
在程序当中,假设XiaoMing的中没有chineseName这个属性,后来被Runtime添加一个名字叫chineseName的属性。那么,Runtime是如何做到的呢?
2)Step:
①申明chineseName属性
#import "XiaoMing.h"
@interface XiaoMing (MutipleName)
@property(nonatomic,copy) NSString *chineseName;
@end
②动态添加属性和实现方法
#import "XiaoMing+MutipleName.h"
#import
@implementation XiaoMing (MutipleName)
char cName;
-(void)setChineseName:(NSString *) chineseName{
objc_setAssociatedObject(self, &cName, chineseName, OBJC_ASSOCIATION_COPY_NONATOMIC);
}
-(NSString *)chineseName{
return objc_getAssociatedObject(self, &cName);
}
@end
③使用chineseName属性
-(void)answer{
NSLog(@"My Chinese name is %@",self.xiaoMing.chineseName);
self.chineseNameTf.text = self.xiaoMing.chineseName;
}
3)Show Code:
上边就是最要的Code了。以下更精彩。
五.效果图更直观
注:本文转载仅为学习使用
本文搬运至:http://www.jianshu.com/p/8916ad5662a2?hmsr=toutiao.io&utm_medium=toutiao.io&utm_source=toutiao.io