blob: d0aeaf23ddc4ebb4d71bc02691973003bff62f39 [file] [log] [blame]
yangsu@google.com2eff7e22011-06-24 15:57:30 +00001#import "AppDelegate_iPad.h"
2
3@implementation AppDelegate_iPad
4
5@synthesize window, splitViewController;
6
yangsu@google.com2e20c242011-07-07 19:26:42 +00007- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
yangsu@google.com2eff7e22011-06-24 15:57:30 +00008 [window addSubview:[splitViewController view]];
9 [window makeKeyAndVisible];
yangsu@google.com2eff7e22011-06-24 15:57:30 +000010 return YES;
11}
12
13- (void)dealloc {
14 [window release];
15 [splitViewController release];
16 [super dealloc];
17}
18
19@end