2

我在 iOS5 上使用 geocodeAddressString 函数使用前向地理编码时遇到问题。

我有一个 MKMapView 作为模式视图打开,以显示不同的位置以及从互联网上获取的数据。我的问题是当我关闭模式视图,然后再次打开它时。第二次尝试时,实际上只有大约一半的注释被放置在地图上。在第三次尝试时,没有出现。

我觉得我的问题与内存管理和 CLGeocoder 的范围有关,但我就是想不通。

我在包含 MapView 的视图控制器的 ViewDidLoad 函数中创建所有注释。这是我用来获取地址坐标的代码:

int locationCount = 0;
for(NSDictionary *date in locations)
{
    CLGeocoder *geocoder = [[CLGeocoder alloc] init];
    [geocoder geocodeAddressString:[NSString stringWithFormat:@"%@, %@", [date objectForKey:@"venue"], [date objectForKey:@"location"]] completionHandler:^(NSArray *placemarks, NSError *error)
    {
        // if we find the exact location (including the venue string), create an annotation for the map
        if(placemarks && placemarks.count > 0)
        {
            CLPlacemark *topResult = [placemarks objectAtIndex:0];
            TourAnnotation *placemarkAnnotation = [[TourAnnotation alloc] initWithLocation:topResult.location andDetails:date];
            placemarkAnnotation.tag = locationCount;
            [tourMap addAnnotation:placemarkAnnotation];
        }
        // if not place an annotation at the center of the city
        else
        {
            [geocoder geocodeAddressString:[date objectForKey:@"location"] completionHandler:^(NSArray *placemarks, NSError *error)
             {
                 if(placemarks && placemarks.count > 0)
                 {
                     CLPlacemark *topResult = [placemarks objectAtIndex:0];
                     TourAnnotation *placemarkAnnotation = [[TourAnnotation alloc] initWithLocation:topResult.location andDetails:date];
                     placemarkAnnotation.tag = locationCount;
                     [tourMap addAnnotation:placemarkAnnotation];
                 }
             }];
        }
    }];
    ++locationCount;
}

任何建议,将不胜感激。

4

1 回答 1

0

如果是内存问题,您是否考虑过注释是如何出队和重用的,地图视图有一个委托方法来做这样的事情。

本教程可能会有所帮助。

Ray Wenderlich 地图教程

于 2013-04-19T06:59:57.070 回答