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.
パーサーオブジェクトによって報告されます、それの委任先へと現在の要素の無視できる空白文字の全てまたは一部を表している文字列を提供するために。
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を取り扱う
- parserDidStartDocument:
Sent by the parser object to the delegate when it begins parsing a document.
パーサーオブジェクトによって委任先へと送られます、それが書類の構文解析を開始する時に。
- parserDidEndDocument:
Sent by the parser object to the delegate when it has successfully completed parsing.
パーサーオブジェクトによって委任先へと送られます、それが書類の構文解析を成功裏に完了した時に。
- parser:didStartMappingPrefix:toURI:
Sent by a parser object to its delegate the first time it encounters a given namespace prefix, which is mapped to a URI.
パーサーオブジェクトによってそれの委任先へと送られます、それが、あるURIにマップされるある与えられた名前空間接頭辞と遭遇する最初の時に。
- parser:didEndMappingPrefix:
Sent by a parser object to its delegate when a given namespace prefix goes out of scope.
パーサーオブジェクトによってそれの委任先へと送られます、それが、ある与えられた名前空間接頭辞がスコープ外におよぶ時に。
- parser:resolveExternalEntityName:systemID:
Sent by a parser object to its delegate when it encounters a given external entity with a specific system ID.
パーサーオブジェクトによってそれの委任先へと送られます、それがある与えられた外部エンティティとある特定のシステムIDで遭遇する時に。
- parser:parseErrorOccurred:
Sent by a parser object to its delegate when it encounters a fatal error.
パーサーオブジェクトによってそれの委任先へと送られます、それがある致命的エラーと遭遇する時に。
- parser:validationErrorOccurred:
Sent by a parser object to its delegate when it encounters a fatal validation error. NSXMLParser
currently does not invoke this method and does not perform validation.
パーサーオブジェクトによってそれの委任先へと送られます、それがある致命的検証エラーと遭遇する時に。NSXMLParser
は、現在このメソッドを発動しません、そして検証を実行しません。
- 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.
パーサーオブジェクトによって送られます、それの委任先へと現在の要素の全てのまたは一部の文字を表している文字列を提供するために。
- parser:foundComment:
Sent by a parser object to its delegate when it encounters a comment in the XML.
パーサーオブジェクトによってそれの委任先へと送られます、それがXMLの中のあるコメントと遭遇する時に。
- parser:foundCDATA:
Sent by a parser object to its delegate when it encounters a CDATA block.
パーサーオブジェクトによってそれの委任先へと送られます、それがあるCDATAブロックと遭遇する時に。