本文介绍了如何按降序对日期数组进行排序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个解析为数组的NSDictionary,其中一个元素是date,我尝试使用 [startimeArray sortUsingSelector:@selector(compare :));
(starttimeArray)是我的约会,但它只安排提升。我怎么能按降序排序。谢谢
I have a NSDictionary that parsed to an array one of the element is date, i tried using [startimeArray sortUsingSelector:@selector(compare:)];
(starttimeArray) is my date but it only arrange ascending. how can i sort in descending order. thanks
推荐答案
通过放置 NO 升序参数对数组进行排序:
Sort the array by puting NO is ascending parameter:
NSSortDescriptor *descriptor=[[NSSortDescriptor alloc] initWithKey:@"self" ascending:NO];
NSArray *descriptors=[NSArray arrayWithObject: descriptor];
NSArray *reverseOrder=[dateArray sortedArrayUsingDescriptors:descriptors];
这篇关于如何按降序对日期数组进行排序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!