レシーバーが通信に使うプロトコルを返します
解説
レシーバーが通信に使うプロトコルを返します。
返り値
( int )
整数値
引数
フレームワーク
Foundation
クラス
NSSocketPort
Instance Methods
使用可能
10.0
参照
例文
#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]; NSLog ([NSString stringWithFormat:@"%d",[port protocol]]); } @end