I have a class that parses through an XML file in iOS.
You can get the data of an element in the form of an TBXMLElement*
.
I want to iterate through the XML and make deep copies of the TBXMLElements
and store them in an NSMutableDictionary
class variable.
How can I:
myClassDict addObject:(TBXMLElement*)element?