The APXMLParserObject class is used to work with dashboard XML element.
APXMLParserObject
<NSCoding>
<NSObject>
To get attribute keys, use the element attribute dictionary stored in the APXMLParserObject.attributes property.
attributes. Element attributes.
cdata. Element binary data.
characters. Element string data.
elementName. Element name.
ID. Element key.
objects. Embedded objects.
parent. Parent object.
addObject:. Adds an embedded object to XML element.
boolAttributeForKey:. Returns logic type attribute value by the specified key.
boolPropForKey:. Returns logic type property value by the specified key.
doubleAttributeForKey:. Returns real type attribute value by the specified key.
doublePropForKey:. Returns real type property value by the specified key.
findObjectForID:. Searches for an embedded element by its key in all levels of XML document hierarchy.
findObjectOfElementName:. Searches for an embedded element by its name in all levels of XML document hierarchy.
findObjectOfElementName:startingAt:. Searches for an embedded element by its name in all levels of XML document hierarchy starting from the specified element.
findObjectsOfElementName:. Searches for embedded elements by the specified name in all levels of XML document hierarchy.
hasAttributeForKey:. Checks if XML element attribute by the specified key exists.
hasPropForKey:. Checks if XML element property by the specified key exists.
intAttributeForKey:. Returns integer type attribute value by the specified key.
intPropForKey:. Returns integer type property value by the specified key.
objectForElementName:. Searches for an embedded element by its name at the top level of XML document hierarchy.
objectForID:. Searches for an embedded element by its key at the top hierarchy level.
objectPropForKey:. Returns XML element that is a property, which is searched by the specified key.
objectsForElementName:. Searches for embedded elements by the specified name at the top level of XML document hierarchy.
objectsWithIDs. Returns dictionary of embedded XML elements, for which key value is set.
objectWithTag:. Returns embedded XML element with the specified tag.
stringAttributeForKey:. Returns string type attribute value by the specified key.
stringPropForKey:. Returns string type property value by the specified key.
parserObjectWithName:attributes:. Creates an instance of the APXMLParserObject class.
See also: