有一個NSDictionary解析到數組,其中一個元素是日期。使用[startimeArray sortUsingSelector:@selector(compare:)];
後只能進行升序排列,如何進行降序排列?
非常感謝。
NSSortDescriptor *sortDes=[[NSSortDescriptor alloc] initWithKey:@"存儲日期的key" ascending:NO];
startimeArray =[startimeArray sortedArrayUsingDescriptors:[NSArray arrayWithObjects:sortDes,nil]];
NSLog(@"sort array :%@",startimeArray );