使用CLLocation对象作为字典中的键

Z S*_*Z S 6 objective-c core-location mapkit ios4

是否可以将CLLocation对象用作字典中的键?当我尝试这个时,[dictionary objectForKey:clLocationObj]总是返回nil,即使已经插入了具有完全相同纬度和经度的CLLocation键.我能做错什么?

       for (Location *location in someArray) {
               CLLocation *locationKey = [[CLLocation alloc] initWithLatitude:[location.latitude doubleValue] longitude:[location.longtitude doubleValue]];
               LocationAnnotation *annotationAtLocation = [self.uniqueLocations objectForKey:locationKey];
               if (annotationAtLocation == nil)
                    NSLog(@"this is always nil");
       }
Run Code Online (Sandbox Code Playgroud)

我从调试中知道,在someArray中有多个Location位置具有相同的纬度和经度.

Pal*_*ndo 6

CLLocation似乎没有覆盖isEqual执行实际内容比较,而是基于对象标识比较相等性.因此,将它用作字典中的键是不明智的,除非您始终使用完全相同的对象访问它.

您在评论中描述的解决方案在很多情况下都是非常好的解决方法:

我最终将CLLocationCoordinate2D对象转换为a NSValue并将其用作字典的关键字.


ber*_*ium 5

MapKit框架中有NSValueMapKitGeometryExtensions类别NSValue

//to set
NSValue *locationValue = [NSValue valueWithMKCoordinate:location.coordinate];
[dictionary setObject:object forKey:locationValue];

//to get
NSValue *coordinateValue = dictionary[locationValue];
CLLocationCoordinate2D coordinate = [coordinateValue MKCoordinateValue];
Run Code Online (Sandbox Code Playgroud)