/samples/TileIssue/main.m
http://github.com/route-me/route-me · Objective C · 17 lines · 7 code · 3 blank · 7 comment · 0 complexity · 2a2e1b74c89aa9a2dd1ed746ae87f4d7 MD5 · raw file
- //
- // main.m
- // TileIssue
- //
- // Created by olivier on 4/8/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;
- }