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

parser(_:didEndElement:namespaceURI:qualifiedName:)

Sent by a parser object to its delegate when it encounters an end tag for a specific element. パーサーオブジェクトによってそれの委任先へと送られます、それがある与えられた値要素に対する終了タグと遭遇する時に。

Declaration 宣言

optional func parser(_ parser: XMLParser, 
       didEndElement elementName: String, 
        namespaceURI: String?, 
       qualifiedName qName: String?)

Parameters パラメータ

parser

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

elementName

A string that is the name of an element (in its end tag). ある文字列、それは要素の名前です(それの終了タグの中の)。

namespaceURI

If namespace processing is turned on, contains the URI for the current namespace as a string object. 名前空間処理が入りにされるならば、現在の名前空間に対するURIを文字列オブジェクトとして含みます。

qName

If namespace processing is turned on, contains the qualified name for the current namespace as a string object. 名前空間処理が入りにされるならば、現在の名前空間に対する修飾名を文字列オブジェクトとして含みます。

See Also 参照

Handling XML XMLを取り扱う

Related Documentation 関連文書