6

我在我的大项目中使用 MKMapView。当我加载大量注释(超过 700 个)并在 MapKit 上的这些点之间画线时,我收到 xcode 错误消息“由于内存错误而终止”并且应用程序正在崩溃。你可以在图片上看到:

在此处输入图像描述.

我正在添加这样的行:

在此处输入图像描述

如果我的注释少于 700 条,那么它运行良好。我在想它有一些记忆问题。我该如何解决这个问题?任何建议。

    // adding annodation 
    for (int i=0; i<[fetcher.locations count]; i++)//fetcher.locations is NSMutableArray and inside have  locationInfoClass objects .  locationInfoClass is hold CLLocationCoordinate2D.
        {
           locationInfoClass * loc=[fetcher2.locations objectAtIndex:i];

            CLLocationCoordinate2D coordinate1;
            coordinate1.latitude = loc.lat;
            coordinate1.longitude = loc.lon;

            myAnnotation * ann = [[myAnnotation alloc] initWithCoordinate:annCoordinate           title:@"uniqtitle" subtitle:@"uniqsubtitle"];
           [mapView addAnnotation:ann];


        }
        #pragma mark -
        #pragma mark -mapview overlay 


        CLLocationCoordinate2D *coordinates
        = malloc(sizeof(CLLocationCoordinate2D) * [mapView.annotations count]);

        for (int i=0; i<[mapView.annotations count]; i++) {
            myAnnotation * ann=[mapView.annotations objectAtIndex:i];
            coordinates[i]=ann.coordinate;


        }


        self.routeLine = [MKPolyline polylineWithCoordinates:coordinates count:mapView.annotations.count]; // pinlerin sayısı ne kadarsa o kadar çizgi çiziyor.
        free(coordinates);
        [self.mapView setVisibleMapRect:[self.routeLine boundingMapRect]]; //If you want the route to be visible
        dispatch_async(dispatch_get_main_queue(), ^{
            [self.mapView addOverlay:self.routeLine];
        });

.h 文件有

@property (nonatomic, retain) MKPolyline *routeLine; //your line
@property (nonatomic, retain) MKPolylineView *routeLineView; //overlay view 

MKMapView 委托方法。

-(MKOverlayView *)mapView:(MKMapView *)mapView viewForOverlay:(id<MKOverlay>)overlay
{
    if(overlay == self.routeLine)
    {
        if(nil == self.routeLineView)
        {
            self.routeLineView = [[MKPolylineView alloc] initWithPolyline:self.routeLine];
            self.routeLineView.fillColor = [UIColor redColor];
            self.routeLineView.strokeColor = [UIColor redColor];
            self.routeLineView.lineWidth = 3;

        }

        return self.routeLineView;
    }

    return nil;
}
/*
- (void)mapView:(MKMapView *)mv didAddAnnotationViews:(NSArray *)views
{
    MKAnnotationView *annotationView = [views objectAtIndex:0];
    id <MKAnnotation> mp = [annotationView annotation];
    MKCoordinateRegion region = MKCoordinateRegionMakeWithDistance([mp coordinate], 1500, 1500);
    [mv setRegion:region animated:YES];

}*/
- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>)annotation
{

    MKAnnotationView *pinView = nil;
    if(annotation != mapView.userLocation)
    {
        static NSString *defaultPinID = @"ftffggf";
        pinView = (MKAnnotationView *)[self.mapView dequeueReusableAnnotationViewWithIdentifier:defaultPinID];
        if ( pinView == nil )
            pinView = [[MKAnnotationView alloc]
                       initWithAnnotation:annotation reuseIdentifier:defaultPinID];

        //pinView.pinColor = MKPinAnnotationColorGreen;
        pinView.canShowCallout = YES;



        //pinView.animatesDrop = YES;
        UIImage * image=[UIImage imageNamed:@"pin.png"];
        CGSize size=CGSizeMake(50, 63);//set the width and height
        pinView.image = image
    }
    else {
        [self.mapView.userLocation setTitle:@"I am here"];
    }
    pinView.centerOffset = CGPointMake(0,-23);
    return pinView;

}
4

1 回答 1

5

最近——而且频率越来越高——每次我从 XCode 运行一个项目时,我都会看到相同的错误消息(“因内存错误而终止”),几乎正好运行一分钟后,即使我没有触摸应用程序开始之后。

没有看到:

  • 使用分析器运行时任何令人惊讶的内存消耗。
  • 应用程序终止时的任何明显模式(除了它发生的时间长度,但需要一段时间才能识别)。
  • 任何“由于未捕获的异常而终止应用程序”错误消息,或控制台中的堆栈跟踪。
  • 抛出任何异常(异常断点;异常:全部;中断:抛出时)。
  • 任何僵尸对象。

此外,我看到该应用程序在调试中运行时意外存在 - 如果我在终止后立即从设备重新运行该应用程序,则不会随机跳回 Springboard。

我正要问一个类似的问题,详细说明所有这些细节,并询问我到底该如何解决这个问题。

然后我有一个很好的时刻,并注意到控制台中有两个内存警告,即使分析器没有显示任何内存问题。

僵尸。当我关闭 Zombie Objects 时,内存警告消失了,应用程序不再自发终止。

编辑:

10 个月后,我发现了另一种可能发生这种情况的情况。原来,无限while循环也可以做到这一点:

while (result==nil) {
    result = [collectionView indexPathForItemAtPoint:testPoint];
    testPoint = nextTestPoint(); // After about 12 seconds, at which point this is several tens of thousands of pixels off the edge of the screen, the app dies from "Memory error"
}
于 2014-05-13T13:19:14.677 回答