摘要:
typedef struct objc_object { Class isa; } *id; typedef struct objc_class *Class; struct objc_class { Class isa; Class super_class; /* followed by runt 阅读全文
摘要:
在Objective-C中,由于方法调用都是在运行期确定的,因此没有针对方法的symbol,只有针对类的。 Oc 编译错误、符号与链接、加载 oc 语言只在编译时进行符号声明存在检查,不存在链接阶段的解析 No visible @interface for ‘xxxx’ declares the s 阅读全文