ios开发小知识(对象数组排序)

Posted 凌风4819

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ios开发小知识(对象数组排序)相关的知识,希望对你有一定的参考价值。

如何对包含自定义元素类型的NSMutableArray排序

 //JSDataModel.h文件

 @interface JSDataModel:NSObject

 @property(nonatomic,copy) NSString *userName;

 @property(nonatomic,copy) NSString *sortNum;

 @end

 

 //初始化数据

 NSMutableArray *tempArray = [NSMutableArray array];

 for (NSUInteger i =5; i>0; i--) {

 JSDataModel *model = [[JSDataModel alloc]init];

 model.userName = @"userName";

 model.sortNum = [@(i) stringValue];

 [tempArray addObject:model];

 }

 

 //对对象数组中的所有元素排除

 NSSortDescriptor  *sorter = [[NSSortDescriptor alloc]initWithKey:@"sortNum" ascending:YES];

 NSArray  *temp  = [tempArray sortedArrayUsingDescriptors:@[sorter]];//排序后的数组

 NSLog(@"%@",temp);

 

以上是关于ios开发小知识(对象数组排序)的主要内容,如果未能解决你的问题,请参考以下文章

iOS - 月总结开发中遇到的小知识点(2020.04)

iOS开发小知识合集1000篇251

微信小程序蓝牙模块BLE开发说明基础知识

iOS - 周总结开发中遇到的小知识点(2018.12.17-2018.12.22)

iOS - 周总结开发中遇到的小知识点(2018.12.03-2018.12.08)

iOS - 周总结开发中遇到的小知识点(2018.12.10-2018.12.15)