runtime学习笔记

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了runtime学习笔记相关的知识,希望对你有一定的参考价值。

获取属性
objc_property_t * propertys = class_copyPropertyList(clazz, &outCount);

获取属性名
NSString * key = [NSString stringWithCString:property_getName(property) encoding:NSUTF8StringEncoding];

获取属性的描述
NSString * attributesString = [NSString stringWithCString:property_getAttributes(property) encoding:NSUTF8StringEncoding];

获取方法
Method * methods = class_copyMethodList(clazz, &outCount);

获取方法名
NSStringFromSelector(method_getName(method));

获取成员变量
Ivar * vars = class_copyIvarList(clazz,&outCount);

获取成员变量名
NSString * varName = [NSString stringWithCString:ivar_getName(var) encoding:NSUTF8StringEncoding];

使用runtime的方式执行方法调用

objc_msgSend(p, @selector(setAge:),20);

 

 

- (void)my_setValue:(id)value forKeyPath:(NSString *)keyPath
{

id obj = self;

// 将keyPath中的属性逐个分开存到数组中
NSArray * array = [keyPath componentsSeparatedByString:@"."];

// 获得最后一个属性
NSString * propertyName = [array lastObject];

// 遍历得到最后一个属性的get方法
for(NSUInteger i = 0; i < array.count - 1; i++)
{

SEL getSel = NSSelectorFromString(array[i]);

obj = objc_msgSend(obj, getSel);

}

propertyName = [NSString stringWithFormat:@"set%@:", [propertyName capitalizedString]];

SEL setSel = NSSelectorFromString(propertyName);

// 发送消息调用set方法赋值
objc_msgSend(obj, setSel, value);

}

 

以上是关于runtime学习笔记的主要内容,如果未能解决你的问题,请参考以下文章

Docker学习笔记

我的runtime学习笔记

[OC学习笔记]objc_msgSend:方法快速查找

Vue第六天学习笔记之Vue CLI3详解

Golang学习笔记--unsafe.Pointer和uintptr

iOS开发笔记之Runtime实用总结