objc runtime (三)动态添加方法
- (id)performSelector:方法
大家一定都用过- (id)performSelector:
这个方法。
这个方法在苹果官方的解释为:
Sends a specified message to the receiver and returns the result of the message.
也就是给消息的接受者发送消息,其实也就是调用方法。(不清楚的可以查看《objc runtime (一)发送消息》进行了解)。
那么,大家有没有想过,会不会给 - (id)performSelector:
传入一个没有实现的方法作为参数呢?有。
因为Objective-C都是懒加载机制,懒加载就是在使用的时候才去加载它,并且方法一旦被实现就会被加载到类的方法列表中。所以,一些不常用的方法就应该在使用的时候去实现或添加。如:很多app中,部分功能只有付费后才可以使用,实现这些功能的方法就是动态添加的。
动态添加方法###
runtime中有这样一个方法:
/**
* Adds a new method to a class with a given name and implementation.
*
* @param cls The class to which to add a method.
* @param name A selector that specifies the name of the method being added.
* @param imp A function which is the implementation of the new method. The function must take at least two arguments—self and _cmd.
* @param types An array of characters that describe the types of the arguments to the method.
*
* @return YES if the method was added successfully, otherwise NO
* (for example, the class already contains a method implementation with that name).
*
*/
BOOL class_addMethod(Class cls, SEL name, IMP imp, const char *types) ;
查看定义后,可以获得以下信息:
-
class_addMethod
是根据所给的方法名和方法实现添加一个新方法的函数; - 第一个参数
cls
表示要添加方法的类; - 第二个参数
name
表示要添加的方法名称; - 第三个参数
imp
表示一个实现新方法的函数,并且这个函数至少要有self
和_cmd
两个参数; - 第四个参数
types
表示一个说明方法返回值和参数类型的字符数组; - 添加成功返回
YES
,否则返回NO
。若类中已经实现该方法就会添加失败。
这里需要说明一下:
- 第三个参数
imp
为什么必须有self
和_cmd
这两个参数?
-- 因为在Objective-C的每个方法都有两个隐式参数,也就是self
和_cmd
。 -
self
和_cmd
分别表示什么呢?
我们打开Xcode,依次进入:Help --> Documentation and API Reference --> Browse guides and sample code --> Languages &Utilities --> Objective-C --> Guides --> Objective-C Runtime Programming Guide --> Using Hidden Arguments
可以看到以下说明:
苹果官方文档截图 - 1
从中我们可以知道** self
表示接收消息的对象,_cmd
表示方法的方法编号**
- 第四个参数的字符数组如何表示?
我们打开Xcode,依次进入:Help --> Documentation and API Reference --> Browse guides and sample code --> Languages &Utilities --> Objective-C --> Guides --> Objective-C Runtime Programming Guide --> Type Encodings
可以看到下面的表格:
苹果官方文档截图 - 2 苹果官方文档截图 - 3 我们只要按照表中规则依次排列字符即可。
处理方法
在NSObject
中有这样两个方法:
+ (BOOL)resolveClassMethod:(SEL)sel;
+ (BOOL)resolveInstanceMethod:(SEL)sel;
苹果官方文档中对这两个方法的解释分别为:
+ (BOOL)resolveClassMethod:(SEL)sel;
Dynamically provides an implementation for a given selector for a class method.
动态地为类方法提供实现
以及
+ (BOOL)resolveInstanceMethod:(SEL)sel;
Dynamically provides an implementation for a given selector for an instance method.
动态地为实例方法提供实现
既然是为方法提供实现,那么,肯定会在调用方法后,执行方法前执行这两个方法。由于我们需要动态添加的方法没有实现,所以我们便可以在这个方法中去用runtime动态添加方法。
验证
- 新建一个
RuntimeTest
类; - 添加
+ (void)testAddClassMethod;
和- (void)testAddInstanceMethod
动态添加类方法
- 在
RuntimeTest
实现函数void test_class(id self, SEL _cmd)
用于实现+ (void)testAddClassMethod;
,具体代码如下:
void test_class(id self, SEL _cmd){
NSLog(@"动态添加类方法测试");
}
- 在
RuntimeTest
实现resolveClassMethod:
方法,具体代码如下:
+(BOOL)resolveClassMethod:(SEL)sel{
if (sel == NSSelectorFromString(@"testAddClassMethod")) {
class_addMethod([self superclass], @selector(testAddClassMethod), (IMP)test_class, "v@:");
return YES;
}
else{
return [super resolveClassMethod:sel];
}
}
动态添加实例方法
- 在
RuntimeTest
实现函数void test_Instance(id self, SEL _cmd)
用于实现+ (void)testAddInstanceMethod: ;
,具体代码如下:
void test_Instance(id self, SEL _cmd){
NSLog(@"动态添加实例方法测试");
}
- 在
RuntimeTest
实现resolveInstanceMethod:
方法,具体代码如下:
+(BOOL)resolveInstanceMethod:(SEL)sel{
if (sel == NSSelectorFromString(@"testAddInstanceMethod")) {
class_addMethod([self class], @selector(testAddInstanceMethod), (IMP)test_Instance, "v@:");
return YES;
}
else{
return [super resolveInstanceMethod:sel];
}
}
【注意】
我在实现添加类方法和实例方法时,函数class_addMethod
第一个参数传值不同。因为:
当你给对象发送消息时,消息是在寻找这个对象的类的方法列表。
当你给类发消息时,消息是在寻找这个类的元类的方法列表
调用验证
RuntimeTest *test = [[RuntimeTest alloc]init];
// 测试添加实例方法
[test performSelector:@selector(testAddInstanceMethod)];
// 测试添加类方法
[RuntimeTest performSelector:@selector(testAddClassMethod)];
执行结果:
2017-01-20 02:32:27.337211 runtimeDemo[2801:389925] 动态添加实例方法测试
2017-01-20 02:32:27.337365 runtimeDemo[2801:389925] 动态添加类方法测试
Program ended with exit code: 0