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.