up vote 212 down vote favorite
138
share [g+] share [fb]

It is to my understanding that one should use a forward-class declaration in the event ClassA needs to include a ClassB header, and ClassB needs to include a ClassA header to avoid any circular inclusions. I also understand that an #import it a simple ifndef so that an include only happens.

My inquiry is this. When does one use #import and when does one use @class? Sometimes if I use a @class declaration, I see a common compiler warning such as the following:

warning: receiver 'FooController' is a forward class and corresponding @interface may not exist.

Would really love to understand this, versus just removing the @class forward-declaration and throwing an #import in to silence the warnings the compiler is giving me.

link|improve this question

59% accept rate
feedback

9 Answers

up vote 267 down vote accepted

If you see this warning:

warning: receiver 'myCoolClass' is a forward class and corresponding @interface may not exist

you need to #import the file, but you can do that in your implementation file (.m), and use the @class declaration in your header file.

@class does not (usually) remove the need to #import files, it just moves the requirement down closer to where the information is useful.

For Example

If you say @class myCoolClass, the compiler knows that it may see something like:

myCoolClass *myObject;

It doesn't have to worry about anything other than myCoolClass is a valid class, and it should reserve room for a pointer to it (really, just a pointer). Thus, in your header, @class suffices 90% of the time.

However, if you ever need to create or access myObject's members, you'll need to let the compiler know what those methods are. At this point (presumably in your implementation file), you'll need to #import "myCoolClass.h", to tell the compiler additional information beyond just "this is a class".

link|improve this answer
1  
Great answer, thanks. For future reference: this also deals with situations where you @class something in your .h file, but forget to #import it in the .m, try to access a method on the @classed object, and get warnings like: warning: no -X method found. – Tim Aug 24 '09 at 9:24
3  
A case where you'd need to #import instead of @class is if the .h file includes data types or other definitions necessary for your class's interface. – Ken Aspeslagh Feb 13 '10 at 1:46
Another great advantage not mentioned here is quick compilation. Please refer to the answer of Venkateshwar – MartinMoizard Sep 16 '11 at 16:09
Nice explanation, you should write books – AnswerMyQuestionDude Oct 12 '11 at 3:13
feedback

Three simple rules:

  • Only #import the super class in header files.
  • #import all classes you send messages to in implementation.
  • Forward declarations for everything else.

If you do forward declaration in the implementation files, then you probably do something wrong.

link|improve this answer
7  
In header files, you may also have to #import anything that defines a protocol your class adopts. – Tyler Apr 9 '11 at 23:47
Is there a difference in declaring #import in the h interface file or m implementation file? – Chev Jun 23 '11 at 16:18
And #import if you use instance variables from the class – Mark Jan 5 at 12:15
@Mark - Covered by rule #1, only access ivars from your superclass, if even then. – PeyloW Jan 6 at 11:00
feedback

Look at the Objective-C Programming Language documentation on ADC

Under the section on Defining a Class | Class Interface it describes why this is done:

The @class directive minimizes the amount of code seen by the compiler and linker, and is therefore the simplest way to give a forward declaration of a class name. Being simple, it avoids potential problems that may come with importing files that import still other files. For example, if one class declares a statically typed instance variable of another class, and their two interface files import each other, neither class may compile correctly.

I hope this helps.

link|improve this answer
feedback

Use a forward declaration in the header file if needed, and #import the header files for any classes you're using in the implementation. In other words, you always #import the files you're using in your implementation, and if you need to reference a class in your header file use a forward declaration as well.

The exception to this is that you should #import a class or formal protocol you're inheriting from in your header file (in which case you wouldn't need to import it in the implementation).

link|improve this answer
feedback

The common practice is using @class in header files (but you still need to #import the superclass), and #import in implementation files. This will avoid any circular inclusions, and it just works.

link|improve this answer
2  
I thought #import was better than #Include in that it only imports one instance? – Matthew Schinckel Nov 27 '08 at 1:37
2  
True. Don't know if it's about circular inclusions, or incorrect ordering, but I adventured away from that rule (with one import in a header, imports were no longer needed in subclasse's implementation), and soon it got really messy. Bottom line, follow that rule, and the compiler will be happy. – Steph Thirion Nov 27 '08 at 3:57
feedback

Another advantage: Quick compilation

If you include a header file, any change in it causes the current file also to compile but this is not the case if the class name is included as @classname. Of course you will need to include the header in source file

link|improve this answer
feedback

I see a lot of "Do it this way" but I don't see any answers to "Why?"

So: Why should you @class in your header and #import only in your implementation? You're doubling your work by having to @class and #import all the time. Unless you make use of inheritance. In which case you'll be #importing multiple times for a single @class. Then you have to remember to remove from multiple different files if you suddenly decide you don't need access to a declaration anymore.

Importing the same file multiple times isn't an issue because of the nature of #import. Compiling performance isn't really an issue either. If it were, we wouldn't be #importing Cocoa/Cocoa.h or the like in pretty much every header file we have.

link|improve this answer
feedback

When I develop, I have only three things in mind that never cause me any problems.

  1. Import super classes
  2. Import parent classes (when you have children and parents)
  3. Import classes outside your project (like in frameworks and libraries)

For all other classes (subclasses and child classes in my project self), I declare them via forward-class.

link|improve this answer
feedback

if we do this

@interface Class_B : Class_A

mean we are inheriting the Class_A into Class_B, in Class_B we can access all the variables of class_A.

if we are doing this

#import ....
@class Class_A
@interface Class_B

here we saying that we are using the Class_A in our program, but if we want to use the Class_A variables in Class_B we have to #import Class_A in .m file(make a object and use it's function and variables).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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