main.m 350 B

1234567891011121314151617
  1. //
  2. // main.m
  3. // demo13
  4. //
  5. // Created by Andrey Kemka on 4/30/12.
  6. // Copyright (c) 2012 __MyCompanyName__. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. int main(int argc, char *argv[])
  10. {
  11. NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
  12. int retVal = UIApplicationMain(argc, argv, nil, nil);
  13. [pool release];
  14. return retVal;
  15. }