/Example 1/main.m

https://code.google.com/ · Objective C · 17 lines · 7 code · 3 blank · 7 comment · 0 complexity · 37fe650933f2cba498bd5a6377cc4f45 MD5 · raw file

  1. //
  2. // main.m
  3. // PSHTreeGraph
  4. //
  5. // Created by Ed Preston on 7/25/10.
  6. // Copyright Preston Software 2010. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. int main(int argc, char *argv[]) {
  10. NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
  11. int retVal = UIApplicationMain(argc, argv, nil, nil);
  12. [pool release];
  13. return retVal;
  14. }