changed Demo apps RootView to a TableView

This commit is contained in:
Jeena Paradies 2009-11-11 15:41:15 +01:00
parent 40897a865f
commit 3d21e98b8f
85 changed files with 4428 additions and 343 deletions

View file

@ -3,31 +3,45 @@
// JPImagePickerDemo
//
// Created by Jeena on 11.11.09.
// Copyright __MyCompanyName__ 2009. All rights reserved.
// Copyright Jeena Paradies 2009. All rights reserved.
//
#import "JPImagePickerDemoAppDelegate.h"
#import "JPImagePickerDemoViewController.h"
#import "RootViewController.h"
@implementation JPImagePickerDemoAppDelegate
@synthesize window;
@synthesize viewController;
@synthesize navigationController;
#pragma mark -
#pragma mark Application lifecycle
- (void)applicationDidFinishLaunching:(UIApplication *)application {
// Override point for customization after app launch
[window addSubview:viewController.view];
[window addSubview:[navigationController view]];
[window makeKeyAndVisible];
}
- (void)applicationWillTerminate:(UIApplication *)application {
// Save data if appropriate
}
#pragma mark -
#pragma mark Memory management
- (void)dealloc {
[viewController release];
[window release];
[super dealloc];
[navigationController release];
[window release];
[super dealloc];
}
@end