main.m.svn-base
上传用户:kc0325
上传日期:2020-06-20
资源大小:204k
文件大小:0k
源码类别:

iPhone

开发平台:

Objective-C

  1. //
  2. //  main.m
  3. //  iPhoneHTTPServer
  4. //
  5. //  Created by Nonnus on 11/22/08.
  6. //  Copyright __MyCompanyName__ 2008. 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. }