Instance Method インスタンスメソッド

handleFailureInMethod:object:file:lineNumber:description:

Logs (using NSLog) an error message that includes the name of the method that failed, the class name of the object, the name of the source file, and the line number. エラーメッセージを記録します(NSLogを使って)、それは失敗したメソッドの名前、オブジェクトのクラス名、ソースファイルの名前、そして行番号を含みます。

Declaration 宣言

- (void)handleFailureInMethod:(SEL)selector 
                       object:(id)object 
                         file:(NSString *)fileName 
                   lineNumber:(NSInteger)line 
                  description:(NSString *)format, ...;

Parameters パラメータ

selector

The selector for the method that failed 失敗したメソッドに対するセレクタ。

object

The object that failed. 失敗したオブジェクト。

fileName

The name of the source file. ソースファイルの名前。

line

The line in which the failure occurred. それにおいて失敗が発生した行。

format,...

A format string followed by a comma-separated list of arguments to substitute into the format string. See Formatting String Objects for more information. 書式設定文字列、書式設定文字列へと代入するコンマ区切りの引数のリストが続きます。Formatting String Objectsを詳細として見てください。

Discussion 議論

Raises NSInternalInconsistencyException. NSInternalInconsistencyExceptionを引き起こします。

See Also 参照

Handling Assertion Failures アサーションの失敗を取り扱う