Skip to content

Instantly share code, notes, and snippets.

View chunhungtsai's full-sized avatar

Eric Tsai chunhungtsai

View GitHub Profile
@chunhungtsai
chunhungtsai / Communicator.h
Created March 17, 2016 08:14 — forked from rjungemann/Communicator.h
How to open a TCP socket in Objective-C
#import <Foundation/Foundation.h>
@interface Communicator : NSObject <NSStreamDelegate> {
@public
NSString *host;
int port;
}
- (void)setup;