yangsu@google.com | 2eff7e2 | 2011-06-24 15:57:30 +0000 | [diff] [blame] | 1 | #import <UIKit/UIKit.h> |
2 | |||||
3 | int main(int argc, char *argv[]) { | ||||
yangsu@google.com | 2e20c24 | 2011-07-07 19:26:42 +0000 | [diff] [blame^] | 4 | signal(SIGPIPE, SIG_IGN); |
yangsu@google.com | 2eff7e2 | 2011-06-24 15:57:30 +0000 | [diff] [blame] | 5 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; |
6 | int retVal = UIApplicationMain(argc, argv, nil, nil); | ||||
7 | [pool release]; | ||||
8 | return retVal; | ||||
9 | } |