blob: 1773ccaf7bd44b490f9eb35c730a4eb3023fffe7 [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];
jvanverth66c95822014-06-11 13:59:22 -07009
10 self.window.rootViewController = fRoot;
11
yangsu@google.com2eff7e22011-06-24 15:57:30 +000012 return YES;
13}
14
yangsu@google.com2eff7e22011-06-24 15:57:30 +000015- (void)dealloc {
16 [window release];
17 [fRoot release];
yangsu@google.com2eff7e22011-06-24 15:57:30 +000018 [super dealloc];
19}
20
yangsu@google.com2eff7e22011-06-24 15:57:30 +000021@end