main.m.svn-base
上传用户:huachun008
上传日期:2009-10-03
资源大小:1927k
文件大小:0k
源码类别:

MacOS编程

开发平台:

Objective-C

  1. //
  2. //  main.m
  3. //  MultiTouchDemo
  4. //
  5. //  Created by Jason Beaver on 5/29/08.
  6. //  Copyright Apple Inc. 2008. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. int main(int argc, char *argv[]) {
  10. NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
  11. int retVal = UIApplicationMain(argc, argv, nil, nil);
  12. [pool release];
  13. return retVal;
  14. }