Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how can I sort NSMutableDictionary with keys value?

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?

like image 869
Alaattin Bedir Avatar asked Nov 14 '11 08:11

Alaattin Bedir


3 Answers

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.

NSArray *keys = [theDictionary allKeys];
NSArray *sortedKeys = [keys sortedArrayUsingSelector:@selector(compareMethod:)];

There are several other sorted... methods, e.g. sorting with a NSComparator. Have a look here.

like image 162
tobiasbayer Avatar answered Nov 12 '22 17:11

tobiasbayer


Use this one

NSArray *myKeys = [Dict allKeys];
NSArray *sortedKeys = [myKeys sortedArrayUsingSelector:@selector(caseInsensitiveCompare:)];
NSMutableArray *sortedValues = [[[NSMutableArray alloc] init] autorelease];

for(id key in sortedKeys) {
    id object = [Dict objectForKey:key];
    [sortedValues addObject:object];
}
like image 8
Rahul Juyal Avatar answered Nov 12 '22 19:11

Rahul Juyal


NSDictionary *yourDictionary;
NSArray *sortedKeys = [yourDictionary.allKeys sortedArrayUsingDescriptors:@[[NSSortDescriptor sortDescriptorWithKey:@"self" ascending:YES]]];
NSArray *sortedValues = [yourDictionary objectsForKeys:sortedKeys notFoundMarker:@""];
like image 3
Vitalii Gozhenko Avatar answered Nov 12 '22 18:11

Vitalii Gozhenko