Method

Method: 方法
SEL: 方法编号
types: 方法签名
IMP: 函数指针

typedef struct objc_method *Method;

struct objc_method {
    SEL _Nonnull method_name;//方法编号
    char * _Nullable method_types;//方法签名
    IMP _Nonnull method_imp;//函数指针
};

你可能感兴趣的:(Method)