struct objc_method {
SEL method_name OBJC2_UNAVAILABLE;
char *method_types OBJC2_UNAVAILABLE;
IMP method_imp OBJC2_UNAVAILABLE;
}
为什么访问
struct objc_method method_list[1]
比访问
objc_method *buckets[1]
要慢?