macOS/iOS API解説

iOS , Mac アプリケーション開発のために使われる主要フレームワークの日本語情報です。2010年代に書かれた内容です。今後更新はありません。

目次

statistics

デバッグ目的のためにレシーバの情報を含む辞書を返します。

解説

デバッグ目的のためにレシーバの情報を含む辞書を返します。
デバッグの時だけに使います、
NSConnectionRepliesReceived = 0;
NSConnectionRepliesSent = 0;
NSConnectionRequestsReceived = 0;
NSConnectionRequestsSent = 0;

返り値

( NSDictionary * )

辞書

引数

クラス

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