Inherits from NSObject
Conforms to RKParser
Declared in RKXMLParser+libXML.m
RKXMLParser.h

Overview

This is a dead simple XML parser that uses libxml2 to parse an XML document into a dictionary. It is designed specifically for use with RestKit. It does not support any fanciness like Namespaces, DTDs, or other nonsense. It does not save attributes on tags, it only cares about nested content and text.

Tasks

  • – objectFromString:

    Return a key-value coding compliant representation of a payload. Object attributes are encoded as a dictionary and collections of objects are returned as arrays.

Instance Methods

objectFromString:

Return a key-value coding compliant representation of a payload. Object attributes are encoded as a dictionary and collections of objects are returned as arrays.

- (id)objectFromString:(NSString *)string

Declared In

RKParser.h