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

parser:foundCharacters:

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

Declaration 宣言

- (void)parser:(NSXMLParser *)parser 
foundCharacters:(NSString *)string;

Parameters パラメータ

parser

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

string

A string representing the complete or partial textual content of the current element. 現在の要素の完全なまたは部分的なテキスト内容を表している文字列。

Discussion 議論

The parser object may send the delegate several parser:foundCharacters: messages to report the characters of an element. Because string may be only part of the total character content for the current element, you should append it to the current accumulation of characters until the element changes. パーサーオブジェクトは、委任先にいくつかのparser:foundCharacters:メッセージを送って、ある要素の文字それらを報告するかもしれません。stringが現在の要素に対する全文字内容のほんの一部であるかもしれないことから、あなたはそれを文字それらの現在の蓄積に追加すべきです、要素が変化する限りは。

See Also 参照

Handling XML XMLを取り扱う