oc_数组排序

// 对dataSourceArray按timestamp的顺序进行降序排列 YES升序、NO降序
NSSortDescriptor *descriptor = [NSSortDescriptorsortDescriptorWithKey:@"timestamp"ascending:NO];
NSArray*descriptors = [NSArrayarrayWithObject: descriptor];
//进行排序
[dataSourceArraysortUsingDescriptors: descriptors ];






oc_数组排序
文章图片
YES升序 【oc_数组排序】

oc_数组排序
文章图片
NO降序

    推荐阅读