如何使用目标c中的NSSortDescriptor按升序或降序对月份名称进行排序

时间:2018-01-18 13:27:44

标签: ios objective-c xcode nsmutablearray nssortdescriptor

我需要使用NSSortDescriptor按升序或降序对月份和年份进行排序我有一个数组

{
month = Dec;
year = 2017;
},
{
month = Oct;
year = 2017;
},
{
month = Jan;
year = 2018;
}

我以前做过这段代码

NSSortDescriptor * sortDescriptor = [[NSSortDescriptor alloc] initWithKey:@"year" ascending:YES];
    NSArray *sortDescriptors = [NSArray arrayWithObject:sortDescriptor];
    yeardata = [NSMutableArray arrayWithArray:[yeardata sortedArrayUsingDescriptors:sortDescriptors]];

    for (NSDictionary * dic in yeardata)
    {
        NSString * stryear = [dic objectForKey:@"year"];
        NSString * strmonth = [dic objectForKey:@"month"];
        [year addObject:[NSString stringWithFormat:@"%@ , %@",strmonth,stryear]];
    }

我需要对数据进行排序 2017年2月 2017年3月 2017年6月 2017年8月 2018年1月

1 个答案:

答案 0 :(得分:0)

NSArray *array = @[@{
                       @"month":@"Dec",
                       @"year": @"2017",
                       },
                   @{
                       @"month":@"Oct",
                       @"year": @"2017",
                       },
                   @{
                       @"month":@"Jan",
                       @"year": @"2018",
                   }];

NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"MMM"];

NSArray *sorted = [array sortedArrayUsingComparator:^NSComparisonResult(NSDictionary * _Nonnull dict1, NSDictionary * _Nonnull dict2) {

    NSDate *date1 = [dateFormatter dateFromString:dict1[@"month"]];
    NSDateComponents *components1 = [[NSCalendar currentCalendar] components:NSCalendarUnitMonth fromDate:date1];
    [components1 setYear:[dict1[@"year"] integerValue]];
    NSDate *date2 = [dateFormatter dateFromString:dict2[@"month"]];
    NSDateComponents *components2 = [[NSCalendar currentCalendar] components:NSCalendarUnitMonth fromDate:date2];
    [components2 setYear:[dict2[@"year"] integerValue]];
    NSDate *finalDate1 = [[NSCalendar currentCalendar] dateFromComponents:components1];
    NSDate *finalDate2 = [[NSCalendar currentCalendar] dateFromComponents:components2];
    return [finalDate1 compare:finalDate2];
}];

NSLog(@"Sorted: %@", sorted);

输出:

$>Sorted: (
        {
        month = Oct;
        year = 2017;
    },
        {
        month = Dec;
        year = 2017;
    },
        {
        month = Jan;
        year = 2018;
    }
)

那么逻辑是什么? 你不能用一个简单的NSSortDescriptor做到这一点,因为你的月份是在信中,而且" Dec"是在" 10月"按字母顺序排序,但不是在"时间"请讲。 因此,您需要创建一个可以简单比较的NSDate。 如果需要,您可以将该日期保存在数组的字典中,或者使用带有块的sortedArrayUsingComparator:

要颠倒顺序,这是块中最简单的方法:

return [finalDate1 compare:finalDate2];

return [finalDate2 compare:finalDate1];

注意:构建finalDate1 / finalDate2的方式可能并不理想。