位置管理器区域监控
Location manager region monitoring
我正在使用以下 apple clocation manager 区域监控方法:
- (void)locationManager:(CLLocationManager *)manager didEnterRegion:(CLCircularRegion *)region
{
}
- (void)locationManager:(CLLocationManager *)manager didExitRegion:(CLCircularRegion *)region
{
}
问题是当应用程序处于挂起状态时这些方法不会被调用,因此 running.Any 不胜感激。谢谢
尝试使用显着的位置变化而不是开始更新location.Also要监视的半径有限制,最小半径应为 100 米
我正在使用以下 apple clocation manager 区域监控方法:
- (void)locationManager:(CLLocationManager *)manager didEnterRegion:(CLCircularRegion *)region
{
}
- (void)locationManager:(CLLocationManager *)manager didExitRegion:(CLCircularRegion *)region
{
}
问题是当应用程序处于挂起状态时这些方法不会被调用,因此 running.Any 不胜感激。谢谢
尝试使用显着的位置变化而不是开始更新location.Also要监视的半径有限制,最小半径应为 100 米