main.m
上传用户:datou2885
上传日期:2019-04-15
资源大小:162k
文件大小:0k
源码类别:

MacOS编程

开发平台:

Objective-C

  1. //
  2. //  main.m
  3. //  AppleCoder-OpenGLES-00
  4. //
  5. //  Created by Simon Maurice on 18/03/09.
  6. //  Copyright Simon Maurice 2009. 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. }