I have the following string in XML:
<Data>
<Table>
<Id>44</Id>
<Name>My Name</Name>
<Category>My Category</Category>
</Table>
</Data>
This is contained within an NSString. I want the quickest way to get the Category into an NSString. I’ve looked at using NSXMLParser. And I also looked at XMLReader.
Actually, I like using XMLReader.
Seems pretty clean and simple to me.