Skip to content

Instantly share code, notes, and snippets.

@brandontreb
Created September 19, 2011 22:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brandontreb/1227792 to your computer and use it in GitHub Desktop.
Save brandontreb/1227792 to your computer and use it in GitHub Desktop.
#import <UIKit/UIKit.h>
int main(int argc, char *argv[])
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
int retVal = UIApplicationMain(argc, argv, @"ELCUIApplication", nil);
[pool release];
return retVal;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment