美文网首页
oc_数组排序

oc_数组排序

作者: 崇圣道瞳䄹 | 来源:发表于2018-03-14 11:06 被阅读7次

    // 对dataSourceArray按timestamp的顺序进行降序排列 YES升序、NO降序

     NSSortDescriptor *descriptor = [NSSortDescriptor   sortDescriptorWithKey:@"timestamp"  ascending:NO];

     NSArray*descriptors = [NSArray   arrayWithObject: descriptor];

    //进行排序

    [dataSourceArray  sortUsingDescriptors: descriptors ];

    YES升序 NO降序

    相关文章

      网友评论

          本文标题:oc_数组排序

          本文链接:https://www.haomeiwen.com/subject/vvtfqftx.html