I am trying to get all tags values from xml and want to store them in a NSMutableDictionary. I am having a problem to store the values in the NSMutableDictionary, I have a NSMutableArray with a NSMutableDictionary instead.
I am trying to get all tags values from xml and want to store
Share
Normally your tags are unique, something like this:
So what that would translate to is an Array of Dictionaries with each Dictionary having two Key Value Pairs (KVP’s).
If you want more help, you will need to post a sample of the XML you are trying to parse and the code you are using to try and parse it.