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
2009-11-11 16:14:21 +01:00

18 lines
366 B
Objective-C

//
// main.m
// JPImagePickerDemo
//
// Created by Jeena on 11.11.09.
// Copyright Jeena Paradies 2009.
// Licence: MIT-Licence
//
#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;
}