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

parser:parseErrorOccurred:

Sent by a parser object to its delegate when it encounters a fatal error. パーサーオブジェクトによってそれの委任先へと送られます、それがある致命的エラーと遭遇する時に。

Declaration 宣言

- (void)parser:(NSXMLParser *)parser 
parseErrorOccurred:(NSError *)parseError;

Parameters パラメータ

parser

A parser object. パーサーオブジェクト。

parseError

An NSError object describing the parsing error that occurred. 発生した構文解析エラーを記述しているNSErrorオブジェクト。

Discussion 議論

When this method is invoked, parsing is stopped. For further information about the error, you can query parseError or you can send the parser a parserError message. You can also send the parser lineNumber and columnNumber messages to further isolate where the error occurred. Typically you implement this method to display information about the error to the user. このメソッドが発動する場合、構文解析は中止されます。エラーについてのそれ以上の情報のために、あなたはparseErrorに問いただせます、またはあなたはparserparserErrorメッセージを送れます。あなたはまた、パーサーにlineNumberおよびcolumnNumberメッセージを送って、エラーが発生したところをさらに分離できます。概してあなたはこのメソッドを実装して、エラーについての情報をユーザに表示します。

See Also 参照

Handling XML XMLを取り扱う