1.通过runtime 可以获取方法列表和属性(其中方法列表可以是实例方法列表也可以是类方法列表)
1.获取方法列表
-(NSArray *)getMineClassAllMethods:(NSObject *)obj
{
unsigned int methodCount =0;
Method* methodList = class_copyMethodList(obj,&methodCount);
NSMutableArray *methodsArray = [NSMutableArray arrayWithCapacity:methodCount];
for(int i=0;i<methodCount;i++)
{
Method temp = methodList[i];
IMP imp = method_getImplementation(temp);
NSLog(@"IMP--------->%p",imp);
SEL name_f = method_getName(temp);
NSLog(@"SEL--------->%@",NSStringFromSelector(name_f));
const char* name_s =sel_getName(method_getName(temp));
int arguments = method_getNumberOfArguments(temp);
const char* encoding =method_getTypeEncoding(temp);
NSLog(@"方法名:%@,参数个数:%d,编码方式:%@",[NSString stringWithUTF8String:name_s],
arguments,
[NSString stringWithUTF8String:encoding]);
[methodsArray addObject:[NSString stringWithUTF8String:name_s]];
}
free(methodList);
return methodsArray;
}
2.获取对象的所有属性和属性内容
- (NSDictionary *)getMineAllPropertiesAndVaules:(NSObject *)obj
{
NSMutableDictionary *propsDic = [NSMutableDictionary dictionary];
unsigned int outCount;
objc_property_t properties =class_copyPropertyList([obj class], &outCount);
for ( int i = 0; i<outCount; i++)
{
objc_property_t property = properties[i];
const char char_f =property_getName(property);
NSString *propertyName = [NSString stringWithUTF8String:char_f];
id propertyValue = [obj valueForKey:(NSString *)propertyName];
if (propertyValue) {
[propsDic setObject:propertyValue forKey:propertyName];
}
}
free(properties);
return propsDic;
}
2.isa指针指向的是类对象,其中当前类的类对象中存储的是当前类的实例方法(包含父类方法子类实现的实例方法),实例属性等等
obj = objc_getClass(self);
调用上述发方法
[self getMineClassAllMethods:obj];
[self getMineAllPropertiesAndVaules:obj];
打印结果为
方法名:myMethodD,参数个数:2,编码方式:v16@0:8
方法名:myMethodA,参数个数:2,编码方式:v16@0:8
方法名:myMethodB,参数个数:2,编码方式:v16@0:8
方法名:myMethodC:,参数个数:3,编码方式:v24@0:8@16
方法名:viewDidLoad,参数个数:2,编码方式:v16@0:8
3.元类对象(objc_getMetaClass)中方法列表为当前类的类方法
obj = object_getClass([MineViewController class])
调用上述发方法
[self getMineClassAllMethods:obj];
方法名:mineMe,参数个数:2,编码方式:v16@0:8
方法名:initialize,参数个数:2,编码方式:v16@0:8
方法名:load,参数个数:2,编码方式:v16@0:8
4.其他子类或者父类的类方法和实例方法列表的包含列表关系 和isa指针 类对象 元类 父类的关系图相同
5.类对象的类方法在编译的时候就已经确定和创建
6.子类的实例对象的isa指针指向子类的类对象,子类 类对象的isa指针指向的是元类对象,子类类对象的父类指向父类的类对象,子类的 元类对象指向的是 父类的元类对象
7.父类的实例对象的isa指针指向的是父类的类对象,父类的类对象的父类指向NSObject的类对象,父类的类对象的isa指针指向的是父类的元类对象,父类的元类对象指向的是NSObject的元类对象,
8.NSObject的实例对象的isa指针,指向 NSObject 的 类对象,NSObject的父类为nil,NSObject 的类对象的isa 指针指向NSObject元类,NSObject元类对象的isa指针指向 自己,NSObject 的元类对象的父类 指向 NSObject 的类对象。
再来重复一张大神画的图
image.png
欢迎QQ扫码加入iOS个人研发交流群:学习分享大厂内推群
image.png
网友评论