作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我遇到过这种情况,当我缩小 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 ,没有任何问题:
当我缩小时:
最佳答案
尝试 clustering .基本上,您将注释组合在一起。
我链接到的文章中的代码库:https://github.com/applidium/ADClusterMapView
关于iOS : App crashes when zooming out a map,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22515559/
我是一名优秀的程序员,十分优秀!