1 // 2 // AppDelegate_iPhone.h 3 // iosshell 4 // 5 // Created by Yang Su on 6/30/11. 6 // Copyright 2011 Google Inc. All rights reserved. 7 // 8 9 #import <UIKit/UIKit.h> 10 11 @interface AppDelegate_iPhone : NSObject <UIApplicationDelegate> { 12 UIWindow *window; 13 } 14 15 @property (nonatomic, retain) IBOutlet UIWindow *window; 16 17 @end 18