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
宣言
optional func parser(_ parser: XMLParser
,
foundIgnorableWhitespace whitespaceString: String
)
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を取り扱う
func parser(XMLParser, validationErrorOccurred: Error)
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
は、現在このメソッドを発動しません、そして検証を実行しません。
func parser(XMLParser, foundCharacters: String)
Sent by a parser object to provide its delegate with a string representing all or part of the characters of the current element.
パーサーオブジェクトによって送られます、それの委任先へと現在の要素の全てのまたは一部の文字を表している文字列を提供するために。