- 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:didStartElement:namespaceURI:qualifiedName:attributes:
Sent by a parser object to its delegate when it encounters a start tag for a given element.
パーサーオブジェクトによってそれの委任先へと送られます、それがある与えられた値要素に対する開始タグと遭遇する時に。
- parser:didEndElement:namespaceURI:qualifiedName:
Sent by a parser object to its delegate when it encounters an end tag for a specific element.
パーサーオブジェクトによってそれの委任先へと送られます、それがある与えられた値要素に対する終了タグと遭遇する時に。
- 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: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.
パーサーオブジェクトによって報告されます、それの委任先へと現在の要素の無視できる空白文字の全てまたは一部を表している文字列を提供するために。
- parser:foundProcessingInstructionWithTarget:data:
Sent by a parser object to its delegate when it encounters a processing instruction.
パーサーオブジェクトによってそれの委任先へと送られます、それがある処理命令と遭遇する時に。
- parser:foundComment:
Sent by a parser object to its delegate when it encounters a comment in the XML.
パーサーオブジェクトによってそれの委任先へと送られます、それがXMLの中のあるコメントと遭遇する時に。