デバッグ目的のためにレシーバの情報を含む辞書を返します。
解説
デバッグ目的のためにレシーバの情報を含む辞書を返します。
デバッグの時だけに使います、
NSConnectionRepliesReceived = 0;
NSConnectionRepliesSent = 0;
NSConnectionRequestsReceived = 0;
NSConnectionRequestsSent = 0;
返り値
( NSDictionary * )
辞書
引数
フレームワーク
Foundation
クラス
NSConnection
Instance Methods
使用可能
10.0
参照
例文
#import "MyObject.h" @implementation MyObject - (IBAction)myAction:(id)sender { NSConnection* theConnection; theConnection = [NSConnection defaultConnection]; [theConnection setRootObject:self]; NSLog([[theConnection statistics] description]); } @end