19 lines
463 B
Objective-C
19 lines
463 B
Objective-C
//
|
|
// JPImagePickerDemoAppDelegate.h
|
|
// JPImagePickerDemo
|
|
//
|
|
// Created by Jeena on 11.11.09.
|
|
// Copyright Jeena Paradies 2009. All rights reserved.
|
|
//
|
|
|
|
@interface JPImagePickerDemoAppDelegate : NSObject <UIApplicationDelegate> {
|
|
|
|
UIWindow *window;
|
|
UINavigationController *navigationController;
|
|
}
|
|
|
|
@property (nonatomic, retain) IBOutlet UIWindow *window;
|
|
@property (nonatomic, retain) IBOutlet UINavigationController *navigationController;
|
|
|
|
@end
|
|
|