1

当我滚动显示一个或多个注释的地图时,我的应用程序崩溃了。没有显示注释地图工作正常。

现在我不明白这里有什么问题。请帮我。

以下是我用来显示所有注释的代码。

-(void)displayAllAnnotation
{
    NSLog(@"%d",[reminderTitle count]);
    for (int i=0 ; i<[reminderTitle count]; i++)
    {    
        double templati=[[reminderLatitude objectAtIndex:i]doubleValue];
        double templongi=[[reminderLongitude objectAtIndex:i]doubleValue];


        CLLocationCoordinate2D coord;
        coord.latitude=(CLLocationDegrees)templati;
        coord.longitude=(CLLocationDegrees)templongi;
        DDAnnotation *ann = [[[DDAnnotation alloc] initWithCoordinate:coord   addressDictionary:nil] autorelease];

        ann.title = [reminderTitle objectAtIndex:i];


        [self.mapView addAnnotation:ann];
        [ann release];

    }
}
4

1 回答 1

2

您两次释放ann对象,因此您的应用程序崩溃了。
删除自动释放。就这样写:

DDAnnotation *ann = [[DDAnnotation alloc] initWithCoordinate:coord   addressDictionary:nil];
于 2012-10-20T13:23:02.810 回答