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;}