Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 Objective-c 的新手,appdelegate.h 和 appDelegate.m 有什么区别?.h 和 .m 文件一般有什么区别?
.h 文件是头文件,而 .m 是实现文件。Objective-c 中的头文件通常包含类 @interface 部分,其中包含所有实例变量、属性声明和方法原型。
把它想象成一篇论文的大纲。它包含所有要点,而论文本身包含所有内容。