runInNewThread
新しいスレッドで実行します
解説
新しいスレッドで実行します。
返り値
( void )
なし
引数
フレームワーク
Foundation
クラス
NSConnection
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:port sendPort:nil]; [connection runInNewThread]; //server = [connection rootProxy]; //[server setProtocolForProxy:@protocol(someprotocol)]; NSLog ([[port address] description]); } @end