Ran into this today in Xcode 4.6 and it caught me by surprise. I am using auto-synthesized properties (but manual synthesis makes no difference).
@interface TestA : NSObject
@property (strong) id foo;
@end
#import "TestA.h"
@interface TestB : TestA
- (id)initWithFoo:(id)foo;
@end
@implementation TestB
- (id)initWithFoo:(id)foo
{
self = [super init];
if (self)
{
_foo = foo; // Xcode says _foo is not defined.
//self.foo = foo; // This does work though.
}
return self;
}
@end
I can access _foo in TestA's implementation just fine but not in TestB's. I can fix this by putting id _userInfo as an ivar declaration in TestA.h but I didn't think I would have to. What is happening here?
@privateby default and not@protected. – H2CO3 Feb 13 at 22:23fooexists onTestA, the typical approach to this would be to haveinitWithFoo:exist onTestArather than inTestB. Adding it inTestBsuggests a somewhat strange design (so not surprising that you get somewhat strange implementation). – Rob Napier Feb 13 at 23:04@private: What is the visibility of @synthesized instance variables? – Josh Caswell Feb 14 at 1:15