-
在程序运行过程中, 动态创建一个类(比如KVO的底层实现)
-
在程序运行过程中, 动态地为某个类添加属性\方法, 修改属性值\方法
-
遍历一个类的所有成员变量(属性)\所有方法
例如:我们需要对一个类的属性进行归档解档的时候属性特别的多,这时候,我们就会写很多对应的代码,但是如果使用了runtime就可以动态设置!
例如,PYPerson.h的文件如下所示import
<!-- lang: cpp -->#import "PYPerson.h"
import
-
(void)encodeWithCoder:(NSCoder )encoder
{
unsigned int count = 0;
Ivar ivars = class_copyIvarList([PYPerson class], &count);for (int i = 0; i<count; i++) {
// 取出i位置对应的成员变量Ivar ivar = ivars[i];// 查看成员变量const char *name = ivar_getName(ivar);// 归档NSString *key = [NSString stringWithUTF8String:name];id value = [self valueForKey:key]; [encoder encodeObject:value forKey:key];
}
free(ivars);
} -
(id)initWithCoder:(NSCoder *)decoder
{
if (self = [super init]) {unsigned int count = 0; Ivar *ivars = class_copyIvarList([PYPerson class], &count);for (int i = 0; i<count; i++) { // 取出i位置对应的成员变量 Ivar ivar = ivars[i]; // 查看成员变量 const char *name = ivar_getName(ivar); // 归档 NSString *key = [NSString stringWithUTF8String:name]; id value = [decoder decodeObjectForKey:key]; // 设置到成员变量身上 [self setValue:value forKey:key]; } free(ivars);
}
return self;
}
-
-
利用头文件,我们可以查看到runtime中的各个方法!
-
NSCoding(归档和解档, 利用runtime遍历模型对象的所有属性)
-
字典 –> 模型 (利用runtime遍历模型对象的所有属性, 根据属性名从字典中取出对应的值, 设置到模型的属性上)
-
KVO(利用runtime动态产生一个类)
-
用于封装框架(想怎么改就怎么改)
这就是我们runtime机制的只要运用方向
-
objc_msgSend : 给对象发送消息
-
class_copyMethodList : 遍历某个类所有的方法
-
class_copyIvarList : 遍历某个类所有的成员变量
-
class_…..
这是我们学习runtime必须知道的函数!