在后台运行MK反向地理编码的问题,iphone

时间:2011-09-14 13:43:54

标签: iphone memory-management mkreversegeocoder

我正在使用MKReverseGeocoder(反向寻线程序)来检索用户的当前位置。我在CLLocation Manager的locationDidUpdatedToLocation方法中调用reversegeocoder。

- (void)locationManager:(CLLocationManager *)manager
    didUpdateToLocation:(CLLocation *)newLocation
           fromLocation:(CLLocation *)oldLocation
{

if(!reverseGeocoder )
    {
        NSLog(@"geocoder is nill");
        reverseGeocoder=[[MKReverseGeocoder alloc] initWithCoordinate:[newLocation coordinate]];
        reverseGeocoder.delegate=self;
        [reverseGeocoder start];
        NSLog(@"geocoder allocated");
    }

    else
    {
        NSLog(@"geocoder is not nill");


        if(reverseGeocoder.querying)
        {
        //do nothing ;
        }
        else
        [reverseGeocoder release];

    }

}

.querying属性用于确保仅在完成查询时才释放反向寻址器。但是当应用程序在运行错误消息

的3-4秒内崩溃时
-[MKReverseGeocoder isQuerying]: message sent to deallocated instance

我在这里缺少什么?

感谢您提前提供任何帮助。

1 个答案:

答案 0 :(得分:1)

可能是因为你在发布之前没有将地理编码器的委托设置为nil吗?或者你没有指尖?

试试这个:

    if(reverseGeocoder.querying)
    {
            //do nothing ;
    }
    else
    {
            [reverseGeocoder setDelegate:nil];
            [reverseGeocoder release];
            reverseGeocoder = nil;
    }