iPhone SDK: what's the difference between #import and @class?
- by sashaeve
We can import class declaration with #import:
#import "SomeClass.h"
or declare with @class:
@class SomeClass;
What's the difference and when we should use each of them?