我发现很少有这样的代码
#SOMECLASS.h
@interface SOMECLASS : SOMESUPERCLASS
@end
#SOMECLASS.m
@implementation SOMECLASS {
NSMutableArray *a;
NSMutableArray *b;
NSMutableArray *c;
BOOL d;
}
@synthesize something;
- (id)init
{
self = [super init];
if (self) {
//something
}
return self;
}
有人可以解释一下这实际上意味着什么吗?@implementation 然后'{'这里的一些变量声明'}'这是什么意思?在这里声明的变量的范围是什么?