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