Why would we use the @class
forward declaration in this code? What would happen if we comment out the @class PAWLoginViewController;
? Thanks!
#import <UIKit/UIKit.h>
@class PAWLoginViewController;
@protocol PAWLoginViewControllerDelegate <NSObject>
- (void)loginViewControllerDidLogin:(PAWLoginViewController *)controller;
@end