判断某个类是否含有某个类方法

通过运行时,可以实现检测。

  1. 加入libobjc.A.dylib动态库。
  2. #import <objc/runtime.h>或#import </usr/include/objc/runtime.h>
  3. 使用class_getClassMethod(Class cls, SEL name)进行检测。判断某个类是否含有某个类方法_第1张图片

你可能感兴趣的:(判断某个类是否含有某个类方法)