aboutsummaryrefslogtreecommitdiffhomepage
path: root/experimental/iOSSampleApp/iPhone/AppDelegate_iPhone.mm
blob: 80c5a446b590bfec8ffc404d67d4ba6009959550 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#import "AppDelegate_iPhone.h"

@implementation AppDelegate_iPhone
@synthesize window, fRoot;

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    [window addSubview:fRoot.view];
    [window makeKeyAndVisible];
    return YES;
}

- (void)dealloc {
    [window release];
    [fRoot release];
    [super dealloc];
}

@end