我该怎么做呢:
@interface Foo : NSObject
@property (readonly) int bar;
@end
...
@interface Foo()
@property (nonatomic) int bar;
@end
@implementation Foo
@synthesize bar = _bar;
// stuff that does self.bar = 123;
@end
这样一些外部类不能调用 foo.bar = 123.. 但 Foo 内部的方法可以......?