This commit is contained in:
Jeena Paradies 2009-11-11 14:12:38 +01:00
parent 6e2ee18b11
commit 40897a865f
24 changed files with 2524 additions and 0 deletions

17
JPImagePickerDemo/main.m Normal file
View file

@ -0,0 +1,17 @@
//
// main.m
// JPImagePickerDemo
//
// Created by Jeena on 11.11.09.
// Copyright __MyCompanyName__ 2009. All rights reserved.
//
#import <UIKit/UIKit.h>
int main(int argc, char *argv[]) {
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
int retVal = UIApplicationMain(argc, argv, nil, nil);
[pool release];
return retVal;
}