加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

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

发布时间:2020-12-16 05:43:14 所属栏目:百科 来源:网络整理
导读:是否可以将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.

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读