Runtime(运行时)003-动态添加方法

Posted stevenhusir

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Runtime(运行时)003-动态添加方法相关的知识,希望对你有一定的参考价值。

class_addMethod

#import "Person.h"

#import <objc/message.h>

@implementation Person

/*

 OC的方法调用,会传递两个隐式参数!给IMP(方法实现)!!

 objc_msgSend(self,_cmd);

 id self 方法调用者

 SEL _cmd 方法编号

 */

//instanceMethod 实例方法  classMethod 类方法

//如果该类接收到一个没有实现的实例方法,就会来到这里

+(BOOL)resolveInstanceMethod:(SEL)sel {

    //NSLog(@"%@",NSStringFromSelector(sel));

    //动态添加一个方法!!

    /*

     1.class 哪个类

     2.SEL

     3.IMP 函数的指针

     4.返回值类型

     */

    class_addMethod(self, sel, (IMP)haha, "[email protected]:@");

    return [super resolveInstanceMethod:sel];

}

void haha(id obj, SEL sel , NSString*objc) {

    //NSLog(@"吃到了%@",objc);

    //obj 调用者

    //sel 方法编号

    //objc 参数

    NSLog(@"%@--%@--%@",obj,NSStringFromSelector(sel),objc);//(null)--eat:--汉堡!!

    //objc_msgSend(p,@selector(eat:),@"汉堡");

}

void myMethodIMP(id self, SEL _cmd)//默认参数

{

    // implementation ....

}

以上是关于Runtime(运行时)003-动态添加方法的主要内容,如果未能解决你的问题,请参考以下文章

iOS动态性 运行时runtime初探(强制获取并修改私有变量,强制增加及修改私有方法等)

Runtime(动态添加方法)

RunTime 动态消息机制

iOS 运行时应用

杂谈转载

运行时(iOS)