博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
数组套字典排序
阅读量:5173 次
发布时间:2019-06-13

本文共 2167 字,大约阅读时间需要 7 分钟。

1 { 2     "status": "1", 3     "msg": "\u6210\u529f", 4     "data": { 5         "detail_data": [{ 6             "stock_code": "430074", 7             "now_price": 14.07, 8             "increase": "1.3%", 9             "open": 13.89,10             "general_capital": "108750000",11             "close": 14.07,12             "high": 14.14,13             "low": 13.89,14             "date": "2015-11-25",15             "vol": 723500,16             "amount": 1016942017         }, {18             "stock_code": "430074",19             "now_price": 13.93,20             "increase": "5.29%",21             "open": 13.23,22             "general_capital": "108750000",23             "close": 13.93,24             "high": 14.21,25             "low": 13.21,26             "date": "2015-11-23",27             "vol": 513000,28             "amount": 711686029         }, {30             "stock_code": "430074",31             "now_price": 13.85,32             "increase": "-0.93%",33             "open": 13.98,34             "general_capital": "108750000",35             "close": 13.85,36             "high": 14.3,37             "low": 13.5,38             "date": "2015-11-24",39             "vol": 538000,40             "amount": 754604041         }],42         "date_data": ["2015-11-04", "2015-11-05", "2015-11-06", "2015-11-09", "2015-11-10", "2015-11-11", "2015-11-12", "2015-11-13", "2015-11-16", "2015-11-17", "2015-11-18", "2015-11-19", "2015-11-20", "2015-11-23", "2015-11-24", "2015-11-25", "2015-11-26", "2015-11-27", "2015-11-30", "2015-12-01", "2015-12-02", "2015-12-03"]43     }44 }

 

^^^^^^数据源

方法下面

1 -(void) setDatas{ 2     NSMutableArray *detailArray = [NSMutableArray arrayWithArray:[[all_Dic objectForKey:@"data"] objectForKey:@"detail_data"]]; 3     NSLog(@"detailArray=%@",detailArray); 4  5     NSSortDescriptor*sorter=[[NSSortDescriptor alloc]initWithKey:@"date" ascending:YES]; 6     NSMutableArray *sortDescriptors=[[NSMutableArray alloc]initWithObjects:&sorter count:1]; 7     NSArray *sortArray=[detailArray sortedArrayUsingDescriptors:sortDescriptors]; 8     NSLog(@"sortArray==%@",sortArray); 9 10     11 }

 

转载于:https://www.cnblogs.com/-yun/p/5033301.html

你可能感兴趣的文章
UBUNTU 10.04 更新源 补充
查看>>
outputcache
查看>>
pc110301QWERTYU
查看>>
go 数组
查看>>
ilspy 点击根节点后进行解析的方法
查看>>
promise原理及使用方法
查看>>
MVC实例应用模式
查看>>
C++Primer学习笔记《三》
查看>>
HTML 速查列表
查看>>
英语音标发音技巧难点—英语培训学习资料_伯明汉吧_百度贴吧
查看>>
第二次冲刺第三天
查看>>
详解通信 C# Socket之问题
查看>>
基于linux操作系统下s5pv210板子的按键中断实验
查看>>
构建高性能ASP.NET站点 网站优化需要考虑的方面
查看>>
百科知识 .e,.ec文件如何打开
查看>>
【转】以太网帧、IP报文格式
查看>>
【java】控制台实现贪吃蛇小游戏-LinkedList、Scanner
查看>>
iOS第4天数组排序
查看>>
shell监控自动备份是否成功(判断文件是否存在)
查看>>
接口的理解
查看>>