Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have:

@interface A
@property (nonatomic, retain) B *toB;
@end

@interface B
@property (nonatomic, retain) A *toA;
@end

This causes the compiler to give me this:

error: expected specifier-qualifier-list before 'Property'

Now, it appears this has something to do with the order of parsing the files as independently, they work as long as the pointed to object is declared first.

How can I get round this?

share|improve this question

1 Answer

up vote 2 down vote accepted

Use forward declaration via @class to let the compiler know there is a class named A that it hasn't seen the interface for yet.

For example:

@class A;
@class B;

@interface A
@property (nonatomic, retain) B *toB;
@end

@interface B
@property (nonatomic, retain) A *toA;
@end
share|improve this answer
1  
No need to forward-declare A here, just B. A has already been declared by the time it's used in B's declaration. – smorgan Jul 28 '09 at 13:45
Thanks, I had i feeling that it would be something like that :-) – pingbat Jul 28 '09 at 13:47

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.