blob: d0aeaf23ddc4ebb4d71bc02691973003bff62f39 [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];
return YES;
}
- (void)dealloc {
[window release];
[splitViewController release];
[super dealloc];
}
@end