I have a NSMutableDictionary with string keys and every key has its own array. I want to re-sort the dictionary with keys value alphabetically. How can I do this?
I have a NSMutableDictionary with string keys and every key has its own array.
Share
A dictionary is unsorted by definition.
For iterating over the keys in a specific order, you can sort an array containing the keys of the dictionary.
There are several other
sorted...methods, e.g. sorting with aNSComparator. Have a look here.