mirror of
https://github.com/zhigang1992/FayeObjC.git
synced 2026-01-12 17:22:33 +08:00
18 lines
366 B
Objective-C
18 lines
366 B
Objective-C
//
|
|
// main.m
|
|
// fayeiPhone
|
|
//
|
|
// Created by Paul Crawford on 11-03-04.
|
|
// Copyright 2011 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
int main(int argc, char *argv[]) {
|
|
|
|
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
|
|
int retVal = UIApplicationMain(argc, argv, nil, nil);
|
|
[pool release];
|
|
return retVal;
|
|
}
|