1234567891011121314151617 |
- //
- // main.m
- // demo09
- //
- // Created by Andrey Kemka on 4/30/12.
- // Copyright (c) 2012 __MyCompanyName__. 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;
- }
|