web-dev-qa-db-ja.com

NSDictionaryキーをそれぞれの値でソートして取得する

整数値を持つNSMutableDictionaryがあり、それぞれの値で昇順にソートされたキーの配列を取得したいです。たとえば、この辞書では:

mutableDict = {
    "A" = 2,
    "B" = 4,
    "C" = 3,
    "D" = 1,
}

配列["D", "A", "C", "B"]になりたいです。私の実際の辞書は、もちろん4つの項目よりもはるかに大きいです。

42
Eric

NSDictionaryメソッドkeysSortedByValueUsingComparator:トリックを行う必要があります。

オブジェクトの値を比較するNSComparisonResultを返すメソッドが必要です。

あなたの辞書は

NSMutableDictionary * myDict;

そしてあなたの配列は

NSArray *myArray;

myArray = [myDict keysSortedByValueUsingComparator: ^(id obj1, id obj2) {

     if ([obj1 integerValue] > [obj2 integerValue]) {

          return (NSComparisonResult)NSOrderedDescending;
     }
     if ([obj1 integerValue] < [obj2 integerValue]) {

          return (NSComparisonResult)NSOrderedAscending;
     }

     return (NSComparisonResult)NSOrderedSame;
}];

数値定数の代わりにNSNumberオブジェクトを使用してください。

ところで、これは次から取得されます: https://developer.Apple.com/library/content/documentation/Cocoa/Conceptual/Collections/Articles/Dictionaries.html

66
Hermann Klecker

NSDictionary には、allKeysと呼ばれるこのきちんとしたメソッドがあります。

ただし、配列をソートする場合は、 keysSortedByValueUsingComparator: トリックを行う必要があります。

リチャードのソリューションも機能しますが、必ずしも必要ではない追加の呼び出しを行います。

// Assuming myDictionary was previously populated with NSNumber values.
NSArray *orderedKeys = [myDictionary keysSortedByValueUsingComparator:^NSComparisonResult(id obj1, id obj2){
    return [obj1 compare:obj2];
}];
27
user1040049

解決策は次のとおりです。

NSDictionary *dictionary; // initialize dictionary
NSArray *sorted = [[dictionary allKeys] sortedArrayUsingComparator:^NSComparisonResult(id obj1, id obj2) {
    return [[dictionary objectForKey:obj1] compare:[dictionary objectForKey:obj2]];
}];
14

最も簡単な解決策:

[dictionary keysSortedByValueUsingSelector:@selector(compare:)]

14

ここで私はこのようなことをしました:

NSMutableArray * weekDays = [[NSMutableArray alloc] initWithObjects:@"Sunday",@"Monday",@"Tuesday",@"Wednesday",@"Thursday",@"Friday",@"Saturday", nil];
NSMutableDictionary *dict = [[NSMutableDictionary alloc] init];
NSMutableArray *dictArray = [[NSMutableArray alloc] init];

for(int i = 0; i < [weekDays count]; i++)
{
    dict = [NSMutableDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithInt:i],@"WeekDay",[weekDays objectAtIndex:i],@"Name",nil];
    [dictArray addObject:dict];
}
NSLog(@"Before Sorting : %@",dictArray);

@try
{
    //for using NSSortDescriptor
    NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc] initWithKey:@"WeekDay" ascending:YES];
    NSArray *descriptor = @[sortDescriptor];
    NSArray *sortedArray = [dictArray sortedArrayUsingDescriptors:descriptor];
    NSLog(@"After Sorting : %@",sortedArray);

    //for using predicate
    //here i want to sort the value against weekday but only for WeekDay<=5
   int count=5;
    NSPredicate *Predicate = [NSPredicate predicateWithFormat:@"WeekDay <=%d",count];
    NSArray *results = [dictArray filteredArrayUsingPredicate:Predicate];

    NSLog(@"After Sorting using predicate : %@",results);
}
@catch (NSException *exception)
{
    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Sorting cant be done because of some error" message:[NSString stringWithFormat:@"%@",exception] delegate:self cancelButtonTitle:@"Ok" otherButtonTitles:nil];
    [alert setTag:500];
    [alert show];
    [alert release];
}
2
tapash