iOSInterviewQuestions icon indicating copy to clipboard operation
iOSInterviewQuestions copied to clipboard

第六题 prop_list 存在哪里?

Open liyunshuang opened this issue 7 years ago • 1 comments

objc_class 结构体里面并没存储这个列表的属性,请问这个属性存储在哪里呢?

liyunshuang avatar Nov 22 '18 05:11 liyunshuang

//objc-runtime-new.h中 struct objc_class : objc_object { ... class_data_bits_t bits;//在bits.data()里面 ... }

TheBloodElf avatar Jan 23 '19 09:01 TheBloodElf