objective-c – 使用CLLocation对象作为字典中的键

objective-c – 使用CLLocation对象作为字典中的键,第1张

概述是否可以将CLLocation对象用作字典中的键?当我尝试这个时,[dictionary objectForKey:clLocationObj]总是返回nil,即使已经插入了具有完全相同纬度和经度的CLLocation键.我能做错什么? for (Location *location in someArray) { CLLocation *locationKey = 是否可以将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");       }

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

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

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

I ended up converting the CLLocationCoordinate2D object into an NSValue and used that as the key to the dictionary.

总结

以上是内存溢出为你收集整理的objective-c – 使用CLLocation对象作为字典中的键全部内容,希望文章能够帮你解决objective-c – 使用CLLocation对象作为字典中的键所遇到的程序开发问题。

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

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

原文地址:https://www.54852.com/langs/1249411.html

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

发表评论

登录后才能评论

评论列表(0条)

    保存