iOSInterviewQuestions
iOSInterviewQuestions copied to clipboard
第六题 prop_list 存在哪里?
objc_class 结构体里面并没存储这个列表的属性,请问这个属性存储在哪里呢?
//objc-runtime-new.h中 struct objc_class : objc_object { ... class_data_bits_t bits;//在bits.data()里面 ... }