ios – 按其中一个键内的值对NSDictionaries数组进行排序

ios – 按其中一个键内的值对NSDictionaries数组进行排序,第1张

概述参见英文答案 > How do I sort an NSMutableArray with custom objects in it?                                    25个 >             Sorting NSArray of dictionaries by value of a key in the dictionaries           参见英文答案 > How do I sort an NSMutableArray with custom objects in it?                                    25个
>             Sorting NSArray of dictionaries by value of a key in the dictionaries                                    11个
我从服务器提取XML提要,提要包含火车站及其纬度和经度位置.

我设法创建了一个充满NSDictionary对象的NSArray,每个对象都对应一个工作站.

在字典中有一个纬度键和经度键.我还有一个CLLocation对象,其中包含设备的位置.

我知道如何计算设备和每个电台之间的距离,但距离不是字典的一部分.我想按距离设备的顺序对数组进行排序.

我该怎么办?不知道从哪里开始,谷歌或我的书对我没有多大帮助!任何帮助深表感谢.

解决方法 使用以下内容;

NSArray *sortedArray;sortedArray = [unsortedArray sortedArrayUsingComparator:^NSComparisonResult(NSDictionary *first,NSDictionary *second) {    // Calculate distances for each dictionary from the device    // ...    return [firstdistance compare:seconddistance];}];
总结

以上是内存溢出为你收集整理的ios – 按其中一个键内的值对NSDictionaries数组进行排序全部内容,希望文章能够帮你解决ios – 按其中一个键内的值对NSDictionaries数组进行排序所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1007149.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-22
下一篇 2022-05-22

发表评论

登录后才能评论

评论列表(0条)

保存