Am trying to parse the below xml using TBXML. I want to create an array which contains all the item tag values. How can I traverse through the "item" tags?
<root>
<item>
<northeast_area>
<item>
<new_england_north xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="xsd:string[8]">
<item xsi:type="xsd:string">boston s, ma</item>
<item xsi:type="xsd:string">providence, ri</item>
<item xsi:type="xsd:string">boston, ma </item>
<item xsi:type="xsd:string">portland, me</item>
<item xsi:type="xsd:string">boston, ma </item>
<item xsi:type="xsd:string">boston central</item>
<item xsi:type="xsd:string">boston north, ma</item>
<item xsi:type="xsd:string">boston south, ma</item>
</new_england_north>
</item>
<item>
<upstate_new_york xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="xsd:string[6]">
<item xsi:type="xsd:string">binghampton, ny</item>
<item xsi:type="xsd:string">rochester, ny</item>
<item xsi:type="xsd:string">albany s, ny</item>
<item xsi:type="xsd:string">syracuse, ny</item>
<item xsi:type="xsd:string">albany, ny</item>
<item xsi:type="xsd:string">buffalo, ny</item>
</upstate_new_york>
</item>
</northeast_area>
</item>
Here's a piece of sample code that reads the XML from a file. You can tweak it to use an available NSString/NSData object. Note that since we don't know the exact potential formats that your SOAP calls can return, this isn't very robust, it's just a solution that works for the data you've provided.
And the output:
Using this, it should be fairly straightforward to create an
NSArray
and store the items, or create anNSArray
for each locale and separate the items that way. (Storing them in anNSDictionary
keyed by the locale.)