http://blog.sina.com.cn/s/blog_69081e060100p4r1.html
@class只是告诉编译器,其后面声明的名称是类的名称,至于这些类是如何定义的,暂时不用考虑。
在头文件中, 一般只需要知道被引用的类的名称就可以了。 不需要知道其内部的实体变量和方法,所以在头文件中一般使用@class来声明这个名称是类的名称。 而在实现类里面,因为会用到这个引用类的内部的实体变量和方法,所以需要使用#import来包含这个被引用类的头文件。
http://blog.sina.com.cn/s/blog_4a04a3c90100qot0.html
The @synthesize directive automatically generates the setters and getters for us, so all we have to implement for this class is the dealloc method.
Accessors will only be generated if they don't already exist, so feel free to specify @synthesize for a property, then implement your custom getter or setter if you want. The compiler will fill in whichever method is missing.
本文深入探讨了Objective-C编程中@class和#import的区别与用途,阐述了它们在类引用中的作用,帮助开发者更好地理解和使用Objective-C的类引用机制。
1122

被折叠的 条评论
为什么被折叠?



