Does ObjectiveC provide a collection for Key-Value-Pairs that allow you to generate a key multiple times?
I am trying to parse an XML file in some simple structure. All things already work with nested NSDictionary, but now xml elements can occur several times.
Edit: My solution
I choose NSArray with KeyValuePairs, it turned out that I needed something order sensitive, NSDictionary failed. Sideeffect: NSFastEnumeration is easily implemented this way for my collection.
Fox32 source share