2011-06-24 15:57:30 +00:00
|
|
|
#import "AppDelegate_iPad.h"
|
|
|
|
|
|
|
|
@implementation AppDelegate_iPad
|
|
|
|
|
|
|
|
@synthesize window, splitViewController;
|
|
|
|
|
2011-07-07 19:26:42 +00:00
|
|
|
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
|
2011-06-24 15:57:30 +00:00
|
|
|
[window addSubview:[splitViewController view]];
|
|
|
|
[window makeKeyAndVisible];
|
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)dealloc {
|
|
|
|
[window release];
|
|
|
|
[splitViewController release];
|
|
|
|
[super dealloc];
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|