I am new to iOS development. I am creating NSMutableDictionary with Title, Count, Score. Now I want to sort my NSMutableDictionary with the base of Count in Descending order. Please help me.
self.top3_Question_Array = [[NSMutableArray alloc] init];
NSMutableDictionary *item = [[NSMutableDictionary alloc] init];
[item setValue: [NSString stringWithFormat: itemName] forKey:@"Title"];
[item setValue: [NSNumber numberWithInteger: itemCount] forKey:@"Count"];
[item setValue: [NSNumber numberWithFloat: itemScore] forKey:@"Score"];
[self.top3_Question_Array addObject: item1];