Method: 方法
SEL: 方法名
char *: 方法类型
IMP: 方法实现的指针
typedef struct objc_method *Method;
struct objc_method {
SEL _Nonnull method_name;//方法名
char * _Nullable method_types;//方法类型
IMP _Nonnull method_imp;//方法实现的指针
};
Method: 方法
SEL: 方法名
char *: 方法类型
IMP: 方法实现的指针
typedef struct objc_method *Method;
struct objc_method {
SEL _Nonnull method_name;//方法名
char * _Nullable method_types;//方法类型
IMP _Nonnull method_imp;//方法实现的指针
};