initRemoteWithTCPPort:host:
ポートとホスト名でソケットポートを初期化して返します
-(id)initRemoteWithTCPPort:(unsigned short)port: host:(NSString *)hostName:
解説
ポートとホスト名でソケットポートを初期化して返します。
ポートはTCP/IPのポート名、ホスト名は通信に使用するホストの名前
返り値
( id )
ソケットポート
引数
( unsigned short )port
ポート
( NSString * )hostName
ホスト名
フレームワーク
Foundation
クラス
NSSocketPort
Instance Methods
使用可能
10.0
参照
- initRemoteWithProtocolFamily:socketType:protocol:address:
例文
#import "MyObject.h" @implementation MyObject - (IBAction)myAction:(id)sender { id server; NSSocketPort *port = [[NSSocketPort alloc] initRemoteWithTCPPort:80 host:@"www.oomori.com" ]; NSConnection *connection = [NSConnection connectionWithReceivePort:nil sendPort:port]; //server = [connection rootProxy]; //[server setProtocolForProxy:@protocol(someprotocol)]; NSLog ([[port address] description]); } @end