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
Jeena Paradies 40897a865f init
2009-11-11 14:12:38 +01:00

33 lines
662 B
Objective-C

//
// JPImagePickerDemoAppDelegate.m
// JPImagePickerDemo
//
// Created by Jeena on 11.11.09.
// Copyright __MyCompanyName__ 2009. All rights reserved.
//
#import "JPImagePickerDemoAppDelegate.h"
#import "JPImagePickerDemoViewController.h"
@implementation JPImagePickerDemoAppDelegate
@synthesize window;
@synthesize viewController;
- (void)applicationDidFinishLaunching:(UIApplication *)application {
// Override point for customization after app launch
[window addSubview:viewController.view];
[window makeKeyAndVisible];
}
- (void)dealloc {
[viewController release];
[window release];
[super dealloc];
}
@end