マークポートを初期化して返します
-(id)initWithMachPort:(int)machPort:
解説
マークポートを初期化して返します。
返り値
( id )
オブジェクト
引数
( int )machPort
マークポート
フレームワーク
Foundation
クラス
NSMachPort
Instance Methods
使用可能
10.0
参照
例文
- (IBAction)pushButton:(id)sender { int i; for (i=1 ; i<50000 ; i++){ NSPort *port = [[[NSMachPort alloc] initWithMachPort:i] retain]; if ([port isKindOfClass: [NSMachPort class]]) { NSLog(@"%d , %@",i,[port description]); } } }