本文介绍了在iPhone上对双精度数组或CLLocationDistance值进行排序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我试图按照最近距离(升序)对 CLLocationDistance
值的列表进行排序。我首先将值转换为 NSString
对象,以便我可以使用以下排序:
I'm trying to sort a list of CLLocationDistance
values by closest distance (ascending order). I first converted the values to NSString
objects so that I could use the following sort:
NSArray *sortedArray;
sortedArray = [distances sortedArrayUsingSelector:@selector(caseInsensitiveCompare:)];
NSString不能对数值排序。
NSString cannot sort on the numeric value.
如何以升序设置数值列表?
How can I set a list of numeric values in ascending order?
推荐答案
我想你想要的是 sortedArrayUsingFunction:context:
使用这样的东西:
I think what you want is sortedArrayUsingFunction:context:
using something like this:
NSInteger intSort(id num1, id num2, void *context)
{
int v1 = [num1 intValue];
int v2 = [num2 intValue];
if (v1 < v2)
return NSOrderedAscending;
else if (v1 > v2)
return NSOrderedDescending;
else
return NSOrderedSame;
}
// sort things
NSArray *sortedArray; sortedArray = [anArray sortedArrayUsingFunction:intSort context:NULL];
这篇关于在iPhone上对双精度数组或CLLocationDistance值进行排序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!