读书人

Objective C TCP 通信实例

发布时间: 2013-01-26 13:47:02 作者: rapoo

Objective C TCP 通讯实例
TCP通讯实例Communicator.h

#import <Foundation/Foundation.h> #import "Communicator.h" int main (int argc, const char * argv[]) {NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; Communicator *c = [[Communicator alloc] init];c->host = @"http://127.0.0.1";c->port = 6789;[c setup];[c open];[pool drain];return 0;}

读书人网 >移动开发

热点推荐