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

handleFailureInFunction:file:lineNumber:description:

Logs (using NSLog) an error message that includes the name of the function, the name of the file, and the line number. エラーメッセージを記録します(NSLogを使って)、それは関数の名前、ファイルの名前、そして行番号を含みます。

Declaration 宣言

- (void)handleFailureInFunction:(NSString *)functionName 
                           file:(NSString *)fileName 
                     lineNumber:(NSInteger)line 
                    description:(NSString *)format, ...;

Parameters パラメータ

functionName

The function 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 アサーションの失敗を取り扱う