/Example 1/main.m
https://code.google.com/ · Objective C · 17 lines · 7 code · 3 blank · 7 comment · 0 complexity · 37fe650933f2cba498bd5a6377cc4f45 MD5 · raw file
- //
- // main.m
- // PSHTreeGraph
- //
- // Created by Ed Preston on 7/25/10.
- // Copyright Preston Software 2010. 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;
- }