iOS位置管理器后台更新在iOS 10中停止

时间:2016-11-12 20:22:49

标签: ios core-location background-process core-bluetooth

我有一个健身应用程序,可以接收位置更新,并且自iOS 4以来一直在后台运行良好。我只是注意到,当应用程序移动到后台(切换应用程序或锁定设备)时,位置更新现在停止10.我还没有发现任何功能或背景权限变更的通知;有谁知道发生了什么?

我的位置设置非常基本:

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

    self.locationManager.desiredAccuracy = kCLLocationAccuracyBest;
    self.locationManager.distanceFilter = kCLDistanceFilterNone;

    self.locationManager.activityType = CLActivityTypeFitness;
    self.locationManager.pausesLocationUpdatesAutomatically = TRUE;
}

// request permissions on iOS 8+
if ([self.locationManager respondsToSelector:@selector(requestWhenInUseAuthorization)]) {
    [self.locationManager requestWhenInUseAuthorization];
}

然后这个回调接收更新:

- (void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations {
    DLog(@"didUpdateToLocation");
}

当应用程序位于前台时,一切都很好。一旦移动到后台,此消息就会出现在控制台中:

/BuildRoot/Library/Caches/com.apple.xbs/Sources/ExternalAccessory/ExternalAccessory-353.22.1/EAAccessoryManager.m:__52-[EAAccessoryManager _checkForConnectedAccessories:]_block_invoke-785 ending background task

然后更新停止。当我将应用程序带到前台时,它们会再次恢复。

我没有直接使用EAAccessoryManager而只能猜测它是什么。我正在使用BluetoothLE框架从心率监视器接收数据,但是当我禁用此功能(停止实例化BluetoothLE对象)时,问题仍然存在。

我的UIBackgroundModes设置为locationexternal-accessorybluetooth-central,因为我还有Pebble手表连接。我尝试添加bluetooth-peripheral,但这没有用。我也设置了NSLocationWhenInUseUsageDescriptionNSBluetoothPeripheralUsageDescription,这些正在发挥作用。

1 个答案:

答案 0 :(得分:6)

在iOS 9中CLLocationManager添加了一个新属性 - allowsBackgroundUpdates。如果您希望在后台接收位置更新,则此属性默认为false,并且必须明确设置为true

针对iOS 8 SDK构建的应用获得了grandfathered功能,即使不设置此属性,也会继续接收后台更新。