00001 // 00002 // main.m 00003 // Untitled 00004 // 00005 // Created by Felix Huang on 09-12-08. 00006 // Copyright Webinit Consulting 2009. All rights reserved. 00007 // 00008 00009 #import <UIKit/UIKit.h> 00010 00011 int main(int argc, char *argv[]) { 00012 00013 NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 00014 int retVal = UIApplicationMain(argc, argv, nil, nil); 00015 [pool release]; 00016 return retVal; 00017 }