init
This commit is contained in:
parent
6e2ee18b11
commit
40897a865f
24 changed files with 2524 additions and 0 deletions
17
JPImagePickerDemo/main.m
Normal file
17
JPImagePickerDemo/main.m
Normal 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;
|
||||
}
|
Reference in a new issue