合成错误"缺少属性实现声明的上下文"

rre*_*hel 17 xcode properties declaration

有人有主意吗?当我尝试合成我在.h文件中声明的属性时,它不让我合成它.有任何想法吗?谢谢!

mam*_*lls 55

当您尝试合成类实现范围之外的属性时,可能会发生这种情况.

不正确:

@synthesize yourProperty;
@implementation YourClass
@end
Run Code Online (Sandbox Code Playgroud)

正确:

@implementation YourClass
@synthesize yourProperty;
@end
Run Code Online (Sandbox Code Playgroud)