Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
Scope. It seems that autogenerated ivars are @private by default and not @protected. – H2CO3 Feb 13 at 22:23
Here is a good explanation why automatically generated ivars are private. – kovpas Feb 13 at 22:26
That definitely seems like what's going on but it's still a bit surprising. I'd figure it would be @protected, especially since I'm pretty sure I've seen Apple recommend not using properties in init and release methods in WWDC talks. – user988375 Feb 13 at 22:27
1  
Since foo exists on TestA, the typical approach to this would be to have initWithFoo: exist on TestA rather than in TestB. Adding it in TestB suggests a somewhat strange design (so not surprising that you get somewhat strange implementation). – Rob Napier Feb 13 at 23:04
It's sort of more than @private: What is the visibility of @synthesized instance variables? – Josh Caswell Feb 14 at 1:15
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.