blob: 7c59360d1d72b2b89a26247f261abd677c993b6c [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
yangsu@google.com2eff7e22011-06-24 15:57:30 +00009 // Override point for customization after application launch.
yangsu@google.com2eff7e22011-06-24 15:57:30 +000010 [window addSubview:[splitViewController view]];
11 [window makeKeyAndVisible];
12 [splitViewController loadData];
13 return YES;
14}
15
16- (void)dealloc {
17 [window release];
18 [splitViewController release];
19 [super dealloc];
20}
21
22@end