c5aeccd8ba
git-svn-id: http://skia.googlecode.com/svn/trunk@1879 2bbb7eff-a529-9590-31e7-b0007b416f81
20 lines
424 B
Plaintext
20 lines
424 B
Plaintext
#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
|