gpt4 book ai didi

ios - MKPointAnnotation被释放,而键值观察者

转载 作者:行者123 更新时间:2023-12-01 16:52:37 26 4
gpt4 key购买 nike

添加注释时出现以下错误

释放类MKPointAnnotation的实例0x21fcadd0,同时仍向其注册键值观察器。观察信息已泄漏,甚至可能错误地附加到其他对象上。在NSKVODeallocateBreak上设置一个断点,以在调试器中在此处停止。

这是当前的观察信息:

(
上下文:0x0,属性:0xb74f170>
)

我的代码低于图钉超过100。

 if ([arrListing count] != 0) {
for (int i = 0; i < [arrListing count]; i++) {


Listing *obj = [arrListing objectAtIndex:i];
NSLog(@"Title %@ long:%@ Lat:%@",obj.Title,obj.log,obj.lat);

CLLocationCoordinate2D annotationCoord;

annotationCoord.latitude = [obj.lat floatValue];
annotationCoord.longitude = [obj.log floatValue];

// do something
MKPointAnnotation *annotationPoint = [[MKPointAnnotation alloc] init];
annotationPoint.coordinate = annotationCoord;
annotationPoint.title = obj.Title;
// annotationPoint.subtitle = obj.log;
[mapView addAnnotation:annotationPoint];



}
}
}

在此先感谢

最佳答案

这意味着您可能误认为纬度和经度。

纬度应在-90至90之间,经度应在-180至180之间。

关于ios - MKPointAnnotation被释放,而键值观察者,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14460433/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com