Contents

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.

  • qName:

    If namespace processing is turned on, contains the qualified name for the current namespace as a string object.

See Also

Related Documentation

Handling XML