1.对象、类与isa关系
虚线为isa走位图,实线为继承关系。
2.类的成员
类的属性:NSObject.class -> class_data_bits_t -> class_rw_t -> property_array_t -> property_list_t -> property_t
类的方法:NSObject.class -> class_data_bits_t -> class_rw_t -> method_array_t -> method_list_t -> method_t -> big
类的成员变量:NSObject.class -> class_data_bits_t -> class_rw_t -> class_ro_t -> ivar_list_t -> ivar_t