mirror of
https://github.com/wu736139669/Monkey-Test.git
synced 2026-08-05 05:55:46 +00:00
18 lines
324 B
Objective-C
18 lines
324 B
Objective-C
//
|
|
// main.m
|
|
// iPhoneHTTPServer
|
|
//
|
|
// Created by Robbie Hanson on 11/25/10.
|
|
// Copyright 2010 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
int main(int argc, char *argv[]) {
|
|
|
|
@autoreleasepool {
|
|
int retVal = UIApplicationMain(argc, argv, nil, nil);
|
|
return retVal;
|
|
}
|
|
}
|