summaryrefslogtreecommitdiff
path: root/pjsip-apps/src/ipjsystest/Classes/ipjsystestAppDelegate.m
blob: 51d7b085e833d78612918dc59525a4ad188584cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
//
//  ipjsystestAppDelegate.m
//  ipjsystest
//
//  Created by Liong Sauw Ming on 3/20/10.
//  Copyright Teluu Inc. (http://www.teluu.com) 2010. All rights reserved.
//

#import "ipjsystestAppDelegate.h"
#import "RootViewController.h"


@implementation ipjsystestAppDelegate

@synthesize window;
@synthesize navigationController;

#pragma mark -
#pragma mark Application lifecycle

- (void)applicationDidFinishLaunching:(UIApplication *)application {    
    
    // Override point for customization after app launch
    [window addSubview:[navigationController view]];
    [window makeKeyAndVisible];
}


- (void)applicationWillTerminate:(UIApplication *)application {
    // Save data if appropriate
}


#pragma mark -
#pragma mark Memory management

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


@end