vote up 1 vote down star

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?

flag

50% accept rate

1 Answer

vote up 2 vote down check

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
link|flag
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 at 13:45
Thanks, I had i feeling that it would be something like that :-) – pingbat Jul 28 at 13:47

Your Answer

Get an OpenID
or

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