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

parser(_:didStartElement:namespaceURI:qualifiedName:attributes:)

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

Declaration 宣言

optional func parser(_ parser: XMLParser, 
     didStartElement elementName: String, 
        namespaceURI: String?, 
       qualifiedName qName: String?, 
          attributes attributeDict: [String : String] = [:])

Parameters パラメータ

parser

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

elementName

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

namespaceURI

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

qualifiedName

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

attributeDict

A dictionary that contains any attributes associated with the element. Keys are the names of attributes, and values are attribute values. ある辞書、それは要素と結びつけられたあらゆる属性を含みます。キーは、属性の名前です、そして値は属性の値です。

See Also 参照

Handling XML XMLを取り扱う

Related Documentation 関連文書