/samples/ProgrammaticMap/main.m
Objective C | 17 lines | 7 code | 3 blank | 7 comment | 0 complexity | 4448ecd6c0ffd82d2e8e22f57f74349b MD5 | raw file
- //
- // main.m
- // ProgrammaticMap
- //
- // Created by Hal Mueller on 3/25/09.
- // Copyright Route-Me Contributors 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;
- }