0

単一の場所を取得して、からの通知を停止したいCLLocationManager

私はこれでそれを行います:

-(id)initWithDelegate:(id <GPSLocationDelegate>)aDelegate{
self = [super init];

if(self != nil) {
    locationManager = [[CLLocationManager alloc] init];
    locationManager.delegate = self;
    delegate = aDelegate;

}
return self;
}

-(void)startUpdating{
    locationManager.distanceFilter = kCLDistanceFilterNone;
    locationManager.desiredAccuracy = kCLLocationAccuracyHundredMeters;
    [locationManager startUpdatingLocation];
}

- (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation {
    [locationManager stopUpdatingLocation];
    [delegate locationUpdate:newLocation];
}

問題は、私がそうしても[locationManager stopUpdatingLocation];

- (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:

私はまだ通知を受け取ります。なぜそれが起こるのか分かりますか?

4

2 に答える 2

2

多分私の解決策を試してください。LocationManger Obj を処理するための 2 つの機能を構築しています。最初の関数は、ハンドル開始更新位置の startUpdates です。コードは次のようになります。

- (void)startUpdate
{
    if ([self locationManager])
    {
        [[self locationManager] stopUpdatingLocation];
    }
    else
    {
        self.locationManager = [[CLLocationManager alloc] init];
        [[self locationManager] setDelegate:self];
        [[self locationManager] setDesiredAccuracy:kCLLocationAccuracyBestForNavigation];
        [[self locationManager] setDistanceFilter:10.0];
    }

    [[self locationManager] startUpdatingLocation];
}

2 番目の関数は、場所の更新を停止するハンドル CLLocationDelegate の stopUpdate です。コードは次のようになります。

- (void)stopUpdate
{
    if ([self locationManager])
    {
        [[self locationManager] stopUpdatingLocation];
    }
}

したがって、CLLocationManagerDelegate は次のようになります。

- (void)locationManager:(CLLocationManager *)manager
    didUpdateToLocation:(CLLocation *)newLocation
           fromLocation:(CLLocation *)oldLocation
{    
    NSDate* eventDate = newLocation.timestamp;
    NSTimeInterval howRecent = [eventDate timeIntervalSinceNow];
    self.attempts++;

    if(firstPosition == NO)
    {
        if((howRecent < -2.0 || newLocation.horizontalAccuracy > 50.0) && ([self attempts] < 5))
        {
            // force an update, value is not good enough for starting Point            
            [self startUpdates];
            return;
        }
        else
        {
            firstPosition = YES;
            isReadyForReload = YES;
            tempNewLocation = newLocation;
            NSLog(@"## Latitude  : %f", tempNewLocation.coordinate.latitude);
            NSLog(@"## Longitude : %f", tempNewLocation.coordinate.longitude);
            [self stopUpdate];
        }
    }
}

上記のこの関数内では、更新場所に最適な場所のみを修正しています。私の答えがお役に立てば幸いです、乾杯。

于 2012-12-16T13:24:40.587 に答える
-1

問題の原因は距離フィルターにあると思います。ドキュメントが言うように:

Use the value kCLDistanceFilterNone to be notified of all movements. The default value of this property is kCLDistanceFilterNone. つまり、設定したものだけが得られます-継続的な更新。

于 2012-12-16T12:56:31.853 に答える