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

parser:foundIgnorableWhitespace:

Reported by a parser object to provide its delegate with a string representing all or part of the ignorable whitespace characters of the current element. パーサーオブジェクトによって報告されます、それの委任先へと現在の要素の無視できる空白文字の全てまたは一部を表している文字列を提供するために。

Declaration 宣言

- (void)parser:(NSXMLParser *)parser 
foundIgnorableWhitespace:(NSString *)whitespaceString;

Parameters パラメータ

parser

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

whitespaceString

A string representing all or part of the ignorable whitespace characters of the current element. 現在の要素の無視できる空白文字の全てまたは一部を表している文字列。

Discussion 議論

All the whitespace characters of the element (including carriage returns, tabs, and new-line characters) may not be provided through an individual invocation of this method. The parser may send the delegate several parser:foundIgnorableWhitespace: messages to report the whitespace characters of an element. You should append the characters in each invocation to the current accumulation of characters. 要素の全ての空白文字(キャリッジリターン、タブ、そしてニューライン文字を含みます)は、このメソッドの個々の発動を通して提供されないかもしれません。パーサーは、委任先にいくつかのparser:foundIgnorableWhitespace:メッセージを送ることで、ある要素の空白文字を報告するかもしれません。あなたは、各発動において文字それらを、文字の現在の蓄積に追加すべきです。

See Also 参照

Handling XML XMLを取り扱う