blob: 80c5a446b590bfec8ffc404d67d4ba6009959550 [file] [log] [blame]
yangsu@google.com2eff7e22011-06-24 15:57:30 +00001#import "AppDelegate_iPhone.h"
2
3@implementation AppDelegate_iPhone
yangsu@google.comc5aeccd2011-07-17 14:42:08 +00004@synthesize window, fRoot;
yangsu@google.com2eff7e22011-06-24 15:57:30 +00005
yangsu@google.com2e20c242011-07-07 19:26:42 +00006- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
yangsu@google.com2e20c242011-07-07 19:26:42 +00007 [window addSubview:fRoot.view];
yangsu@google.com2eff7e22011-06-24 15:57:30 +00008 [window makeKeyAndVisible];
yangsu@google.com2eff7e22011-06-24 15:57:30 +00009 return YES;
10}
11
yangsu@google.com2eff7e22011-06-24 15:57:30 +000012- (void)dealloc {
13 [window release];
14 [fRoot release];
yangsu@google.com2eff7e22011-06-24 15:57:30 +000015 [super dealloc];
16}
17
yangsu@google.com2eff7e22011-06-24 15:57:30 +000018@end