blob: c33fddea2f9c54ede5b250d8b15e06dc38963b64 [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];
jvanverth66c95822014-06-11 13:59:22 -070010
11 self.window.rootViewController = splitViewController;
12
yangsu@google.com2eff7e22011-06-24 15:57:30 +000013 return YES;
14}
15
16- (void)dealloc {
17 [window release];
18 [splitViewController release];
19 [super dealloc];
20}
21
22@end