XMLParserDelegate
The interface an XML parser uses to inform its delegate about the content of the parsed document.
Declaration
protocol XMLParserDelegate : NSObjectProtocolTopics
Handling XML
parserDidStartDocument(_:)parserDidEndDocument(_:)parser(_:didStartElement:namespaceURI:qualifiedName:attributes:)parser(_:didEndElement:namespaceURI:qualifiedName:)parser(_:didStartMappingPrefix:toURI:)parser(_:didEndMappingPrefix:)parser(_:resolveExternalEntityName:systemID:)parser(_:parseErrorOccurred:)parser(_:validationErrorOccurred:)parser(_:foundCharacters:)parser(_:foundIgnorableWhitespace:)parser(_:foundProcessingInstructionWithTarget:data:)parser(_:foundComment:)parser(_:foundCDATA:)
Handling the DTD
parser(_:foundAttributeDeclarationWithName:forElement:type:defaultValue:)parser(_:foundElementDeclarationWithName:model:)parser(_:foundExternalEntityDeclarationWithName:publicID:systemID:)parser(_:foundInternalEntityDeclarationWithName:value:)parser(_:foundUnparsedEntityDeclarationWithName:publicID:systemID:notationName:)parser(_:foundNotationDeclarationWithName:publicID:systemID:)