获取iOS背景中的位置

时间:2011-07-07 22:40:33

标签: nsthread cllocationmanager

我想每隔X分钟在后台获取我的位置,我正在使用一个与NSLog运行良好的线程,它会打印一个字符串。但是,当我调用我的locationManager时,它似乎无法正常工作。

这是我的代码:

- (void)threadEntryPoint:(ActualizarPosicionGPS2AppDelegate *)paramSender{
    NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];

    while([[NSThread currentThread] isCancelled] == NO){
        [NSThread sleepForTimeInterval:10.0f];
        if ([[NSThread currentThread] isCancelled] == NO &&
            [[UIApplication sharedApplication] backgroundTimeRemaining] != DBL_MAX) {
            [self getLocation];
        }
    }

    [pool release];
}
应用程序中的

:didFinishLaunchingWithOptions:

[NSThread detachNewThreadSelector:@selector(threadEntryPoint:) toTarget:self withObject:self];

然后,我有以下内容:

-(void) endTaskWidthIdentifier:(NSNumber *)paramIdentifier{
    UIBackgroundTaskIdentifier identifier = [paramIdentifier integerValue];
    [[UIApplication sharedApplication] endBackgroundTask:identifier];
}
- (void)applicationDidEnterBackground:(UIApplication *)application {
    self.backgroundTaskIdentifier = [application beginBackgroundTaskWithExpirationHandler:^{
        NSNumber *backgroundTask = [NSNumber numberWithInteger:self.backgroundTaskIdentifier];
        [self performSelectorOnMainThread:@selector(endTaskWidthIdentifier:) withObject:backgroundTask waitUntilDone:YES];
        self.backgroundTaskIdentifier = UIBackgroundTaskInvalid;
    }];

}

重要的是,这里是getLocation:

-(void)getLocation{
    if(nil==locationManager)
        locationManager = [[CLLocationManager alloc] init];

    [locationManager setDelegate:self];
    [locationManager setDistanceFilter:kCLLocationAccuracyHundredMeters];
    [locationManager setDesiredAccuracy:kCLLocationAccuracyBest];

    [locationManager startUpdatingLocation];
    NSLog(@"ouch");
    if(locationManager.location!=nil){
        NSLog(@"obtenido %f, %f",locationManager.location.coordinate.latitude,locationManager.location.coordinate.longitude);
    }
}

locationManager.location始终返回nil,因此它没有获取当前位置。

我做错了吗?也许我有一个错误的概念!

非常感谢!

1 个答案:

答案 0 :(得分:1)

请参阅本文中的回答。

How do I get a background location update every n minutes in my iOS application?

您可能还想检查为什么没有调用您的委托方法

如果您对此感到满意,请将您的项目发送至xs2bush@yahoo.com。我会执行代码以查看哪些内容出错。