iOS runtime(一)runtime之Property 详尽
iOS runtime(二)runtime之Ivar 详尽
官方文档
相关函数
/// An opaque type that represents a method in a class definition.
typedef struct objc_method *Method;
struct objc_method {
SEL method_name; // 方法名称
char *method_typesE; // 参数和返回类型的描述字串
IMP method_imp; // 方法的具体的实现的指针
}
//获取方法
Method class_getInstanceMethod(Class cls, SEL name)
//获取所有的实例方法
Method class_getInstanceMethod(Class _Nullable cls, SEL name)
// 获取类方法
Method class_getClassMethod ( Class cls, SEL name );
//获取某个类所有方法列表
Method * _Nullable class_copyMethodList(Class cls, unsigned int * outCount)
//获取函数名称
SEL method_getName(Method m)
// 获取函数实现IMP
IMP method_getImplementation(Method m)
// 获取函数的实现编码类型
const char *method_getTypeEncoding(Method m)
//获取对应的方法的IMP
IMP class_getMethodImplementation(Class cls, SEL name)
// 获取返回值类型
void method_getReturnType(Method m, char * dst, size_t dst_len)
// 获取参数个数
unsigned int method_getNumberOfArguments(Method m)
// 获取函数指定的参数类型
void method_getArgumentType(Method m, unsigned int index, char * dst, size_t dst_len)
// 获取函数描述
struct objc_method_description *method_getDescription(Method m)
方法参数解析:
- SEL :方法标签 详解参考SEL
- IMP:指针,指向方法实现的地址 详解参考IMP
- method_getTypeEncoding: 方法方法详细解析 具体解读参考Type Encodings 下边是关于Type Encoding的解析
编码值 含意
c 代表char类型
i 代表int类型
s 代表short类型
l 代表long类型,在64位处理器上也是按照32位处理
q 代表long long类型
C 代表unsigned char类型
I 代表unsigned int类型
S 代表unsigned short类型
L 代表unsigned long类型
Q 代表unsigned long long类型
f 代表float类型
d 代表double类型
B 代表C++中的bool或者C99中的_Bool
v 代表void类型
* 代表char *类型
@ 代表对象类型
# 代表类对象 (Class)
: 代表方法selector (SEL)
[array type] 代表array
{name=type…} 代表结构体
(name=type…) 代表union
bnum A bit field of num bits
^type A pointer to type
? An unknown type (among other things, this code is used for function pointers)
实例代码
#import "ViewController.h"
#import
@interface ViewController ()
@end
@implementation ViewController
- (void)sele_class_getInstanceMethod:(id)str{
}
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
[self method_get];
}
- (void)method_get{
SEL MethodSEL = @selector(sele_class_getInstanceMethod:);
Method method = class_getInstanceMethod([self class], MethodSEL);
//获取方法名称
SEL method_SEL = method_getName(method);
NSLog(@"\n获取方法名称:%@",NSStringFromSelector(method_SEL));
//获取方法的指针地址
NSLog(@"\n获取方法的指针地址:%p",method_getImplementation(method));
//获取方法方法返回类型
char dst;
method_getReturnType(method, &dst, sizeof(char));// 获取方法返回类型
NSLog(@"\n获取方法返回类型:%c",dst);
//获取方法的参数个数
int method_parameter_count = method_getNumberOfArguments(method);
NSLog(@"\n获取方法的参数个数:%d",method_parameter_count);
//获取指定位置参数的类型字符串
char argName[512] = {};
for (unsigned int j = 0; j < method_parameter_count; ++j) {
method_getArgumentType(method, j, argName, 512);
NSLog(@"\n获取指定位置参数的类型字符串:%@ 第%u个参数类型为:%s",NSStringFromSelector(method_getName(method)), j, argName);
memset(argName, '\0', strlen(argName));
}
// 获取函数的实现编码类型
const char *method_typeEncoding = method_getTypeEncoding(method);
NSLog(@"\n获取函数的实现编码类型:%s",method_typeEncoding);
//获取函数描述
struct objc_method_description *description = method_getDescription(method);
NSLog(@"获取函数描述:%s %@ %@",__func__,NSStringFromSelector(description->name),@(description->types));
}
打印数据:
2018-05-29 10:35:42.022830+0700 runTimer[22220:1657991]
获取方法名称:sele_class_getInstanceMethod:
2018-05-29 10:35:42.023007+0700 runTimer[22220:1657991]
获取方法的指针地址:0x107650e30
2018-05-29 10:35:42.023106+0700 runTimer[22220:1657991]
获取方法返回类型:v
2018-05-29 10:35:42.023216+0700 runTimer[22220:1657991]
获取方法的参数个数:3
2018-05-29 10:35:42.023331+0700 runTimer[22220:1657991]
获取指定位置参数的类型字符串:sele_class_getInstanceMethod: 第0个参数类型为:@
2018-05-29 10:35:42.023532+0700 runTimer[22220:1657991]
获取指定位置参数的类型字符串:sele_class_getInstanceMethod: 第1个参数类型为::
2018-05-29 10:35:42.023618+0700 runTimer[22220:1657991]
获取指定位置参数的类型字符串:sele_class_getInstanceMethod: 第2个参数类型为:@
2018-05-29 10:35:42.023739+0700 runTimer[22220:1657991]
获取函数的实现编码类型:v24@0:8@16
2018-05-29 10:35:42.024019+0700 runTimer[22220:1657991] 获取函数描述:-[ViewController method_get] sele_class_getInstanceMethod: v24@0:8@16
函数解析(1)method_getTypeEncoding
const char *method_getTypeEncoding(Method m)
- 实例解析:
实例代码:
#import "ViewController.h"
#import
@interface ViewController ()
@end
@implementation ViewController
- (void)sele_class_getInstanceMethod:(id)str{
}
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
[self method_TypeEncoding];
}
- (void)method_TypeEncoding {
SEL MethodSEL = @selector(getMethods);
Method method = class_getInstanceMethod([self class], MethodSEL);
//获取方法的参数个数
int method_parameter_count = method_getNumberOfArguments(method);
NSLog(@"\n获取方法的参数个数:%d",method_parameter_count);
//获取指定位置参数的类型
char argName[512] = {};
for (unsigned int j = 0; j < method_parameter_count; ++j) {
method_getArgumentType(method, j, argName, 512);
NSLog(@"\n获取指定位置参数的类型字符串:%@ 第%u个参数类型为:%s",NSStringFromSelector(method_getName(method)), j, argName);
memset(argName, '\0', strlen(argName));
}
//获取方法方法返回类型
char dst;
method_getReturnType(method, &dst, sizeof(char));// 获取方法返回类型
NSLog(@"\n获取方法返回类型:%c",dst);
//获取函数的实现编码类型
const char *method_typeEncoding = method_getTypeEncoding(method);
NSLog(@"\n获取函数的实现编码类型:%s",method_typeEncoding);
}
- (void)getMethods{
}
数据打印:
2018-05-29 11:36:20.700505+0700 runTimer[23092:1696533]
获取方法的参数个数:2
2018-05-29 11:36:20.700647+0700 runTimer[23092:1696533]
获取指定位置参数的类型字符串:getMethods 第0个参数类型为:@
2018-05-29 11:36:20.700758+0700 runTimer[23092:1696533]
获取指定位置参数的类型字符串:getMethods 第1个参数类型为::
2018-05-29 11:36:20.700840+0700 runTimer[23092:1696533]
获取方法返回类型:v
2018-05-29 11:36:20.701070+0700 runTimer[23092:1696533]
获取函数的实现编码类型:v16@0:8
疑问一:通过代码我们可以知道,我们多获取的方法是没有参数的,但是我们获取的参数个数是两个,这是什么原因呢?
解答:
对于我们打印的方法,它在编译时会被转换成类似这样:
((void (*)(id, SEL))objc_msgSend)((id)m, @selector(getMethods));
所以我们在打印的时候会打印 2个参数,关于objc_msgSend后面会专门写一篇文章进行讲解。
疑问二:
从TypeEncoding的打印数据和 参数的打印数据对比我们可以看出,编码的第一个参数返回类型"v"(返回类型并非参数) 我们也可以看到第一个"@" 以及第二个参数":"但是每个参数后面都会跟随一个数字 这个什么意思呢
解答:
表示该变量距离存放对象的内存区域的起始地址有多远。意味深长的一个参数表示,需要深入了解的话,可以多查一些相关的资料。
函数解析(2)class_copyMethodList
/获取某个类所有方法列表
Method * _Nullable class_copyMethodList(Class cls, unsigned int * outCount)
实例代码:
#import "ViewController.h"
#import
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
[self class_copyMethodList];
}
- (void)class_copyMethodList{
u_int count;
Method *methods= class_copyMethodList([self class], &count);
for (int i = 0; i < count ; i++){
SEL name = method_getName(methods[i]);
NSString *strName = [NSString stringWithCString:sel_getName(name) encoding:NSUTF8StringEncoding];
NSLog(@"strName;%@",strName);
}
free(methods);
}
打印数据:
2018-05-29 13:42:55.588744+0700 runTimer[24276:1747261] strName;class_copyMethodList
2018-05-29 13:42:55.588882+0700 runTimer[24276:1747261] strName;viewDidLoad
2018-05-29 13:42:55.589101+0700 runTimer[24276:1747261] strName;didReceiveMemoryWarning
不解释~
函数解析(3) method_getReturnType
void method_getReturnType(Method m, char * dst, size_t dst_len)
获取方法的返回类型
char * dst: 指针指向地址
size_t dst_len:分配内存的大小
char:C语言中的字符(char)
函数解析(4)method_getArgumentType
void method_getArgumentType(Method m, unsigned int index, char * dst, size_t dst_len)
获取制定位置的参数类型 与 method_getReturnType 调用方法相同 在上边代码中会发现是不同的写法, 其实代码中的含义是相同的。此处需要注意的是
//内存清空防止 野指针的出现
#define memset(dest, ...)
参考:memset用法详解(转)