/samples/SimpleSampleMap/main.m

http://github.com/route-me/route-me · Objective C · 17 lines · 7 code · 3 blank · 7 comment · 0 complexity · b3edc2d3528a43225aac98c063bf7544 MD5 · raw file

  1. //
  2. // main.m
  3. // SimpleSampleMap
  4. //
  5. // Created by John Ahrens on 3/14/09.
  6. // Copyright John Ahrens, LLC 2009. 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. }