This repository has been archived on 2025-08-18. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
JPImagePickerController/JPImagePickerDemo/main.m
Jeena Paradies 40897a865f init
2009-11-11 14:12:38 +01:00

17 lines
365 B
Objective-C

//
// 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;
}