photo-ios/Trovebox/TSAlertView/Demo/main.m
2014-02-04 16:11:00 -02:00

16 lines
316 B
Objective-C

//
// main.m
// TSAVDemo
//
// Created by Nick Hodapp aka Tom Swift on 1/19/11.
//
#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;
}