如何给一个字典的数组排序

发布于 2022-08-24 08:52:46 字数 880 浏览 12 评论 0

我有这样一个数组:

NSArray *arr = @[@{@"index" : @"3", @"key" : @"value"},
                 @{@"index" : @"4", @"key" : @"value"},
                 @{@"index" : @"1", @"key" : @"value"},
                 @{@"index" : @"2", @"key" : @"value"}];

要重新按照字典里的index值排序变成这样:

NSArray *arr = @[@{@"index" : @"1", @"key" : @"value"},
                 @{@"index" : @"2", @"key" : @"value"},
                 @{@"index" : @"3", @"key" : @"value"},
                 @{@"index" : @"4", @"key" : @"value"}];

我现在的做法是遍历数组然后排序的办法。有没有优雅一点的做法。。感觉这样好麻烦

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

少钕鈤記 2022-08-31 08:52:46

Compare method

Either you implement a compare-method for your object:

- (NSComparisonResult)compare:(Person *)otherObject {
    return [self.birthDate compare:otherObject.birthDate];
}
NSArray *sortedArray;
sortedArray = [drinkDetails sortedArrayUsingSelector:@selector(compare:)];

NSSortDescriptor (better)
or usually even better: (The default sorting selector of NSSortDescriptor is compare:)

NSSortDescriptor *sortDescriptor;
sortDescriptor = [[[NSSortDescriptor alloc] initWithKey:@"birthDate"
                                              ascending:YES] autorelease];
NSArray *sortDescriptors = [NSArray arrayWithObject:sortDescriptor];
NSArray *sortedArray;
sortedArray = [drinkDetails sortedArrayUsingDescriptors:sortDescriptors];

Blocks (shiny!)

There's also the possibility of sorting with a block since 10.6:

NSArray *sortedArray;
sortedArray = [drinkDetails sortedArrayUsingComparator:^NSComparisonResult(id a, id b) {
    NSDate *first = [(Person*)a birthDate];
    NSDate *second = [(Person*)b birthDate];
    return [first compare:second];
}];
栖竹 2022-08-31 08:52:46
NSArray *array = [NSArray array];
    [array sortedArrayUsingComparator:^NSComparisonResult(id obj1, id obj2){
        NSNumber index1 = [obj1 valueForKey:@"index"];
        NSNumber index2 = [obj2 valueForKey:@"index"];
        return [index1 compare:index2];
    }];

就是这样了。

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文