// // helloappAppDelegate.h // helloapp // // Created by Bess Ho on 8/5/10. // Copyright __MyCompanyName__ 2010. All rights reserved. // #import @class MainViewController; @interface helloappAppDelegate : NSObject { UIWindow *window; MainViewController *mainViewController; } @property (nonatomic, retain) IBOutlet UIWindow *window; @property (nonatomic, retain) IBOutlet MainViewController *mainViewController; @end