ios拓展29-runtime动态添加方法

之前在ios拓展20(可以对照着看)里有讲过,添加类和方法实现.是直接在控制器里面实现的.如果类已经有了,只想动态添加方法怎么实现呢,今天单独拿出来讲. 整体是根据苹果官方文档来的,也更容易理解.

1.控制器里面动态调用方法(没有声明实现)
ios拓展29-runtime动态添加方法_第1张图片
Paste_Image.png
2.在person.m文件里面动态添加
@implementation Person
// 动态添加方法, 首先实现resolveInstanceMethod:
// 当一个方法没有实现,但是又调用的时候会调用resolveInstanceMethod
+ (BOOL)resolveInstanceMethod:(SEL)sel{
    NSLog(@"==--=%@",NSStringFromSelector(sel));
    if (sel == @selector(eat:)) {
        /**
         cls:给哪个类添加方法
         SEL:添加方法的编号
         IMP:方法实现(c语言函数)
         types:方法类型(查官方文档)
         */
        class_addMethod(self, sel, (IMP)myMethod, "v@:@");
// 直接用下面写法更简单
//class_addMethod(self, Selector, method_getImplementation(myMethod), method_getTypeEncoding(myMethod));
    }
    return [super resolveInstanceMethod:sel];
}

//id self(方法调用者), SEL _cmd(调用方法的编号) 为隐式参数,默认方法都有
void myMethod(id self, SEL _cmd, id num)// 函数名可以不为eat
{
    NSLog(@"===%@",num);
}
@end
3.输出的结果
Paste_Image.png
4.关于IMP参数的实现简介

方法1: 直接写c函数
方法2: block则是函数实现

ios拓展29-runtime动态添加方法_第2张图片
Paste_Image.png

推荐一篇文章OC最实用的runtime总结,面试、工作你看我就足够了

5.method
  //判断类中是否包含某个方法的实现
  BOOL class_respondsToSelector(Class cls, SEL sel)
  //获取类中的方法列表
  Method *class_copyMethodList(Class cls, unsigned int *outCount) 
  //为类添加新的方法,如果方法该方法已存在则返回NO
  BOOL class_addMethod(Class cls, SEL name, IMP imp, const char *types)
  //替换类中已有方法的实现,如果该方法不存在添加该方法
  IMP class_replaceMethod(Class cls, SEL name, IMP imp, const char *types) 
  //获取类中的某个实例方法(减号方法)
  Method class_getInstanceMethod(Class cls, SEL name)
  //获取类中的某个类方法(加号方法)
  Method class_getClassMethod(Class cls, SEL name)
  //获取类中的方法实现
  IMP class_getMethodImplementation(Class cls, SEL name)
  //获取类中的方法的实现,该方法的返回值类型为struct
  IMP class_getMethodImplementation_stret(Class cls, SEL name) 

  //获取Method中的SEL
  SEL method_getName(Method m) 
  //获取Method中的IMP
  IMP method_getImplementation(Method m)
  //获取方法的Type字符串(包含参数类型和返回值类型)
  const char *method_getTypeEncoding(Method m) 
  //获取参数个数
  unsigned int method_getNumberOfArguments(Method m)
  //获取返回值类型字符串
  char *method_copyReturnType(Method m)
  //获取方法中第n个参数的Type
  char *method_copyArgumentType(Method m, unsigned int index)
  //获取Method的描述
  struct objc_method_description *method_getDescription(Method m)
  //设置Method的IMP
  IMP method_setImplementation(Method m, IMP imp) 
  //替换Method
  void method_exchangeImplementations(Method m1, Method m2)

  //获取SEL的名称
  const char *sel_getName(SEL sel)
  //注册一个SEL
  SEL sel_registerName(const char *str)
  //判断两个SEL对象是否相同
  BOOL sel_isEqual(SEL lhs, SEL rhs) 

  //通过块创建函数指针,block的形式为^ReturnType(id self,参数,...)
  IMP imp_implementationWithBlock(id block)
  //获取IMP中的block
  id imp_getBlock(IMP anImp)
  //移出IMP中的block
  BOOL imp_removeBlock(IMP anImp)

  //调用target对象的sel方法
  id objc_msgSend(id target, SEL sel, 参数列表...)

你可能感兴趣的:(ios拓展29-runtime动态添加方法)