我正在尝试根据两个位置之间的距离(当前位置和第一个 for 循环中的指定坐标)对 NSMutableArray 进行排序。但是,排序不会返回任何特定的顺序,而是完全随机的顺序(参见此处的图片:http: //u.maxk.me/iz7Z)。
请你能告诉我哪里出错了吗?
排序:
[self.venues sortUsingComparator:^NSComparisonResult(id obj1, id obj2) {
return [[obj1 objectForKey:@"distance"] compare:[obj2 objectForKey:@"distance"]];
}];
-setVenues:
- (void) setVenues:(NSMutableArray *)_venues {
if (venues != _venues) {
[venues release];
...
NSMutableArray *updatedVenues = [NSMutableArray array];
for (NSDictionary *venue in _venues) {
...
if (address != nil && city != nil) {
CLLocationCoordinate2D coord = CLLocationCoordinate2DMake([[_location objectForKey:@"lat"] floatValue], [[_location objectForKey:@"lng"] floatValue]);
CLLocation *currentLoc = [[CLLocation alloc] initWithLatitude:self.currentLocation.latitude longitude:self.currentLocation.longitude];
CLLocation *venueLoc = [[CLLocation alloc] initWithLatitude:coord.latitude longitude:coord.longitude];
CLLocationDistance distance = [venueLoc distanceFromLocation:currentLoc];
float miles = distance / 1000;
miles *= 0.621371192; // metres to miles
NSMutableDictionary *newLocation = [NSMutableDictionary dictionaryWithDictionary:_location];
[newLocation removeObjectForKey:@"distance"];
[newLocation setObject:[NSNumber numberWithFloat:miles] forKey:@"distance"];
_location = [NSDictionary dictionaryWithDictionary:newLocation];
...
NSMutableDictionary *newVenue = [NSMutableDictionary dictionaryWithDictionary:venue];
[newVenue removeObjectForKey:@"location"];
[newVenue setObject:_location forKey:@"location"];
[updatedVenues addObject:newVenue];
}
}
venues = [updatedVenues retain];
}
}