I have two files independant on each other.

Let's just call it Class1 and Class2.

In Class1, I need Class2, and in Class2 I need Class1.

I have a prefix file where I include all my files, and I get some syntax errors because I do

#import "Class1.h"
#import "Class2.h"

How would I define both of them so they can use each other?

What am I doing wrong?

link|improve this question

feedback

1 Answer

up vote 7 down vote accepted

Look into using a forward declaration. Replace the #import of Class2 in Class1 with @class Class2; and move this #import statement to the implementation Class1.m (and vice versa).

link|improve this answer
Nice! Thanks :) I've been wondering what @class did, haha. – Johannes Jensen Apr 16 '10 at 8:20
feedback

Your Answer

 
or
required, but never shown

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