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.
我错过了一些简单的东西 - 很明显。当我添加一个目标 C 类扩展时,它只创建一个 .h 文件——我应该在哪里执行?
类扩展做它所说的;它扩展了一个类的声明。与类别不同,类扩展可以添加将在编译类@property时自动合成的声明。@implementation
@property
@implementation
唯一的要求是#import在编译@implementation.
#import
即类@implementation 是扩展的实现。