首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > 移动开发 >

Objective C TCP 通信实例

2013-01-26 
Objective C TCP 通讯实例TCP通讯实例Communicator.h #import Foundation/Foundation.h #import Commun

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

热点排行