Parsing an XML file in Objective-C

norlee

New Member
I have following xml file with same tags for the generic implementation .I want to parse this file .Can I parse this in iOS. xml file:\[code\] <?xml version="1.0"?><node name="bkl"> <childrens> <node name="A building"> <childrens> <node name="hfs"/> <node name="habc"/> <node name="def"/> </childrens> </node> <node name="B building"> <childrens> <node name="hfs2"/> <node name="habc2"/> <node name="def2"/> </childrens> </node> <node name="C building"> <childrens> <node name="hfs3"/> <node name="hab3"/> <node name="def3"/> </childrens> </node> </childrens></node>\[/code\]
 
Back
Top