what does @class do in iOS 4 development?

Viewed 7472

Is there any difference in doing

@class MyViewController;

rather than doing the normal import of the .h into the appdelegate.h

#import "MyViewController.h"

I've seen some example recently that use the @class way and wondered if there any differences.

thanks.

2 Answers
Related