main.m 350 B

1234567891011121314151617
  1. //
  2. // main.m
  3. // NavApp3
  4. //
  5. // Created by David Cole on 6/23/11.
  6. // Copyright 2011 Kitware, Inc. 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. }