我创建了一个对象,它看起来像这样
aOffice.branchname aOffice.lat aOffice.lng aOffice.distance
然后将其添加到可变数组(nearbranch).
稍后,我计算出每个对象到当前gps位置的距离,并将其添加到对象中并将其放回到数组中. (aOffice.distance)
我现在需要根据aOffice.distance的值对该数组进行排序,但不知道该怎么做
请有人帮帮我
谢谢
解决方法
NSArray *sortDescriptors = @[[NSSortDescriptor sortDescriptorWithKey:@"distance" ascending:NO]]; NSArray *sortedArray = [yourArray sortedArrayUsingDescriptors:sortDescriptors];