Files
FayeObjC/fayeiPhone/main.m
2011-03-05 14:14:38 -05:00

18 lines
366 B
Objective-C

//
// main.m
// fayeiPhone
//
// Created by Paul Crawford on 11-03-04.
// Copyright 2011 __MyCompanyName__. 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;
}