我了解访问属性的setter / getter方法时应该使用[ self setThisValue:@"a"];而不是。thisValue = @"a";但是,在下面的示例中,我可以看到添加自我文档是向iVar属性(而不是局部范围的变量)发送消息,但确实如此在这种情况下还要做什么?
@interface CustomController : UIViewController {
NSMutableArray *foundList;
}
@property(nonatomic, retain) NSMutableArray *foundList;
@end
。
[[self foundList] addObject:eachObject]; // I usually write this ...
要么
[foundList addObject:eachObject];
加里。
一只名叫tom的猫
牧羊人nacy
慕侠2389804