版本记录
版本号 | 时间 |
---|---|
V1.0 | 2017.07.27 |
前言
OC是运行时的语言,底层就是运行时,可以说runtime是OC的底层,很多事情也都可以用运行时解决,下面就讲述一下运行时runtime的知识以及它的妙用。感兴趣的可以看上面几篇。
1. 运行时runtime深度解析(一)—— API
2. 运行时runtime深度解析(二)—— Method Swizzling在页面统计上的应用
3. 运行时runtime深度解析(三)—— Method Swizzling在数组越界上的应用
运行时的几种应用
前几篇讲了Method Swizzling
在页面统计和数组越界上的应用,其实runtime
还有很多地方可以使用,比如归档解档、字典转模型、获取属性方法等列表等。可以看下图,列出了runtime在很多地方的应用。
runtime应用
这些应用里面,JPatch
热更新今年已经被苹果明令禁止了,就不说这个了,大家可以看一下别的方面的应用。这篇文章就主要讲一下运行时在获取类的属性列表以及方法列表中的应用。
功能实现
下面就以代码的形式获取类的属性列表和方法列表,下面就直接看代码吧。
1. JJRuntimeVC.h
#import <UIKit/UIKit.h>
@interface JJRuntimeVC : UIViewController
@end
2. JJRuntimeVC.m
#import "JJRuntimeVC.h"
#import <objc/runtime.h>
@interface JJRuntimeVC ()
@property (nonatomic, assign) NSInteger number;
@property (nonatomic, strong) NSMutableArray *arrM;
@end
@implementation JJRuntimeVC
#pragma mark - Override Base Function
- (void)viewDidLoad
{
[super viewDidLoad];
self.view.backgroundColor = [UIColor greenColor];
[self setupUI];
[self loadTimer];
//获取属性列表
NSArray *propertyArr = [[self class] loadAllProperties];
NSLog(@"属性列表 = %@",propertyArr);
//获取方法列表
NSArray *methodArr = [[self class] loadAllMethods];
NSLog(@"方法列表 = %@",methodArr);
}
#pragma mark - Object Private Function
- (void)setupUI
{
}
- (void)loadTimer
{
}
#pragma mark - Class Public Function
//获取对象的所有属性
+ (NSArray *)loadAllProperties
{
u_int count;
//将count的地址传递过去
objc_property_t *properties = class_copyPropertyList([self class], &count);
NSMutableArray *propertyListArrM = [NSMutableArray arrayWithCapacity:count];
for (int i = 0; i < count; i++) {
//得到propertyName为c语言的字符串
const char *propertyName = property_getName(properties[i]);
//c字符串转化为oc字符串
[propertyListArrM addObject:[NSString stringWithCString:propertyName encoding:NSUTF8StringEncoding]];
}
//class_copyPropertyList为底层c语言,我们使用完一定要记得释放properties
free(properties);
return [propertyListArrM copy];
}
//获取对象的所有方法
+ (NSArray *)loadAllMethods
{
unsigned int methodCount =0;
Method *methodList = class_copyMethodList([self class],&methodCount);
NSMutableArray *methodsArrM = [NSMutableArray arrayWithCapacity:methodCount];
for(int i = 0; i < methodCount; i++)
{
Method temp = methodList[i];
const char *methodName = sel_getName(method_getName(temp));
int arguments = method_getNumberOfArguments(temp);
const char* encoding = method_getTypeEncoding(temp);
NSLog(@"方法名:%@,参数个数:%d,编码方式:%@",[NSString stringWithUTF8String:methodName],arguments,[NSString stringWithUTF8String:encoding]);
[methodsArrM addObject:[NSString stringWithUTF8String:methodName]];
}
free(methodList);
return [methodsArrM copy];
}
@end
下面我们看输出结果
//所有属性列表输出
2017-07-29 09:56:42.178020+0800 JJOC[6052:2093168] 属性列表 = (
number,
arrM
)
//所有方法列表输出
2017-07-29 09:56:42.178108+0800 JJOC[6052:2093168] 方法名:loadTimer,参数个数:2,编码方式:v16@0:8
2017-07-29 09:56:42.178141+0800 JJOC[6052:2093168] 方法名:arrM,参数个数:2,编码方式:@16@0:8
2017-07-29 09:56:42.178202+0800 JJOC[6052:2093168] 方法名:setArrM:,参数个数:3,编码方式:v24@0:8@16
2017-07-29 09:56:42.178266+0800 JJOC[6052:2093168] 方法名:.cxx_destruct,参数个数:2,编码方式:v16@0:8
2017-07-29 09:56:42.178314+0800 JJOC[6052:2093168] 方法名:viewDidLoad,参数个数:2,编码方式:v16@0:8
2017-07-29 09:56:42.178343+0800 JJOC[6052:2093168] 方法名:setupUI,参数个数:2,编码方式:v16@0:8
2017-07-29 09:56:42.178370+0800 JJOC[6052:2093168] 方法名:number,参数个数:2,编码方式:q16@0:8
2017-07-29 09:56:42.178396+0800 JJOC[6052:2093168] 方法名:setNumber:,参数个数:3,编码方式:v24@0:8q16
2017-07-29 09:56:42.178451+0800 JJOC[6052:2093168] 方法列表 = (
loadTimer,
arrM,
"setArrM:",
".cxx_destruct",
viewDidLoad,
setupUI,
number,
"setNumber:"
)
大家可以看见,所有属性和方法都被打印了出来,这里大家会发现,属性的setter
和getter
系统默认的方法也打印了出来,同时还有一个方法.cxx_destruct
被打印了出来,具体是什么我还没有研究,欢迎知道的@我,谢谢大家。
参考文献
1. Runtime 10种用法(没有比这更全的了)
2. Runtime获取类的属性列表和方法列表
后记
未完,待续~~
海边惬意