yangsu@google.com | 2eff7e2 | 2011-06-24 15:57:30 +0000 | [diff] [blame] | 1 | #import "AppDelegate_iPad.h" |
| 2 | |
| 3 | @implementation AppDelegate_iPad |
| 4 | |
| 5 | @synthesize window, splitViewController; |
| 6 | |
yangsu@google.com | 2e20c24 | 2011-07-07 19:26:42 +0000 | [diff] [blame] | 7 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { |
yangsu@google.com | 2eff7e2 | 2011-06-24 15:57:30 +0000 | [diff] [blame] | 8 | [window addSubview:[splitViewController view]]; |
| 9 | [window makeKeyAndVisible]; |
yangsu@google.com | 2eff7e2 | 2011-06-24 15:57:30 +0000 | [diff] [blame] | 10 | return YES; |
| 11 | } |
| 12 | |
| 13 | - (void)dealloc { |
| 14 | [window release]; |
| 15 | [splitViewController release]; |
| 16 | [super dealloc]; |
| 17 | } |
| 18 | |
| 19 | @end |