SampleMapAppDelegate.m
537 Bytes
//
// Sample2AppDelegate.m
// SampleMap : Diagnostic map
//
#import "SampleMapAppDelegate.h"
#import "RootViewController.h"
@implementation SampleMapAppDelegate
@synthesize window;
@synthesize rootViewController;
@synthesize mapContents;
- (void)applicationDidFinishLaunching:(UIApplication *)application {
[window addSubview:[rootViewController view]];
[window makeKeyAndVisible];
}
- (void)dealloc {
self.mapContents = nil;
[rootViewController release];
[window release];
[super dealloc];
}
@end