I have the following key values in my dictionary, I am trying to loop through every row and log every item, is this possible using an NSDictionary?
Notice that my keys are not unique
Key Value
A 1
B 2
B 3
B 4
C 5
C 6
C 7
D 8
It might be the bad way to do it, but if your dictionary is not too big you can try that:
Then you can easily loop through it and log what you need(in this case
[theArray objectAtIndex:1]).Hope it helps