gpt4 book ai didi

iOS : App crashes when zooming out a map

转载 作者:行者123 更新时间:2023-11-29 12:50:38 25 4
gpt4 key购买 nike

我遇到过这种情况,当我缩小 map 时我的应用程序崩溃了。

问题的出现是因为我添加了大量注释。请看下面我的代码:

- (void) plotUsersInMap
{
for (id<MKAnnotation> annotation in self.mapView.annotations) {
[self.mapView removeAnnotation:annotation];
}

NSUInteger count = //get total count
NSLog(@"count * %d", count);
for (int i = 0; i < count; i++)
{
NSNumber *latitude = //get latitude from json
NSNumber *longitude = //get longitude from json

CLLocationCoordinate2D coordinate;
coordinate.latitude = latitude.doubleValue;
coordinate.longitude = longitude.doubleValue;

@autoreleasepool {

MyLocation *annotation = [[MyLocation alloc] initWithName:@"test" coordinate:coordinate QuestionId:nil];
//annotations are added
[self.mapView addAnnotation:annotation];
}
}
}

我在这里尝试添加超过 400 个引脚,我认为这是崩溃的原因 [可能是内存泄漏!]。我想知道有没有办法在我缩小时一个一个地添加图钉?

初始阶段的 map ,没有任何问题: Initial stage

当我缩小时:

it crashes!!

最佳答案

尝试 clustering .基本上,您将注释组合在一起。

我链接到的文章中的代码库:https://github.com/applidium/ADClusterMapView

关于iOS : App crashes when zooming out a map,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22515559/

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