This repository has been archived on 2025-08-18. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
JPImagePickerController/JPImagePickerDemo/Classes/JPImagePickerDemoAppDelegate.m
2009-11-11 15:41:15 +01:00

47 lines
853 B
Objective-C

//
// JPImagePickerDemoAppDelegate.m
// JPImagePickerDemo
//
// Created by Jeena on 11.11.09.
// Copyright Jeena Paradies 2009. All rights reserved.
//
#import "JPImagePickerDemoAppDelegate.h"
#import "RootViewController.h"
@implementation JPImagePickerDemoAppDelegate
@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