blob: c33fddea2f9c54ede5b250d8b15e06dc38963b64 [file] [log] [blame]
#import "AppDelegate_iPad.h"
@implementation AppDelegate_iPad
@synthesize window, splitViewController;
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
[window addSubview:[splitViewController view]];
[window makeKeyAndVisible];
self.window.rootViewController = splitViewController;
return YES;
}
- (void)dealloc {
[window release];
[splitViewController release];
[super dealloc];
}
@end