gpt4 book ai didi

ios - 位置管理器 didExitRegion 未被调用

转载 作者:可可西里 更新时间:2023-11-01 04:41:03 25 4
gpt4 key购买 nike

我已经设置了委托(delegate),创建了一个区域,并且我已经阅读了所有文档。每次用户的位置发生变化并且在指定区域之外时,都不会调用 locationManager(manager: CLLocationManager, didExitRegion region: CLRegion)。我见过它被调用一次然后就停止了。我花了很多时间试图弄清楚发生了什么。

快速了解我在做什么:

当应用程序启动时,我调用 locationManager.startUpdatingLocation(),后者又调用委托(delegate) locationManager(manager: CLLocationManager, didUpdateLocations locations: [CLLocation]),我这样做向服务器快速请求一些我需要的信息,创建一个 CLCircularRegion 并继续调用 locationManager.stopUpdatingLocation()。在那个方法中,我调用了我的 startMonitoringForRegion(_:)

可能是因为每次我创建一个新区域时它都使用相同的标识符? Apple 的文档说可以使用相同的标识符,因为它会替换之前的标识符,但我想知道这是否会导致委托(delegate)不调用 didExitRegion

我的代码如下。谢谢你。

  func configureLocation() {

if CLLocationManager.locationServicesEnabled() {

locationManager.delegate = self

locationManager.requestAlwaysAuthorization()
locationManager.desiredAccuracy = kCLLocationAccuracyBest
locationManager.allowsBackgroundLocationUpdates = false
locationManager.pausesLocationUpdatesAutomatically = true

// Distance filter to update location
//locationManager.distanceFilter = 10.0

// Begin updating user location
locationManager.startUpdatingLocation()

} else {

let title = "Location disabled"
let message = "To enable location services go to Settings > Privacy > Location Services"
self.locationServicesAlertMessage(title, message: message)
}
}


func locationManager(manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {
print("didUpdateCalled")
/*
if UIApplication.sharedApplication().applicationState == .Active {
print("ACTIVE UPDATE: location")
} else if UIApplication.sharedApplication().applicationState == .Background {
print("BACKGROUND UPDATE: location")
}
*/

if firstLocationUpdate {
let center = CLLocationCoordinate2D(latitude: (manager.location?.coordinate.latitude)!, longitude: (manager.location?.coordinate.longitude)!)
let region = MKCoordinateRegion(center: center, span: MKCoordinateSpanMake(0.01, 0.01))

self.mapView.setRegion(region, animated: true)

self.firstLocationUpdate = false
}


// If the user is travelling less than 5 mph, update location
if manager.location?.speed <= 3.5 {

self.updateLongAndLat(manager.location!) { (lat, long) in

print("LAT: \(lat)")
print("LONG: \(long)")
if lat != nil && long != nil {
let center = CLLocationCoordinate2D(latitude: lat!, longitude: long!)
let monitoredRegion = CLCircularRegion(center: center, radius: 10.0, identifier: "UserRegion")
monitoredRegion.notifyOnEntry = false
self.locationManager.startMonitoringForRegion(monitoredRegion)
self.locationManager.stopUpdatingLocation()
}
}
}
}

func locationManager(manager: CLLocationManager, didExitRegion region: CLRegion) {
print("EXITED REGION")

print("Identifier: \(region.identifier)")
if manager.location?.speed <= 3.5 {
self.updateLongAndLat(manager.location!, completion: { (lat, long) in
if lat != nil && long != nil {
let center = CLLocationCoordinate2D(latitude: lat!, longitude: long!)
let monitoredRegion = CLCircularRegion(center: center, radius: 10.0, identifier: "UserRegion")
self.locationManager.startMonitoringForRegion(monitoredRegion)
}
})
}
}

最佳答案

区域监控不依赖于 GPS。这是蜂窝塔/wifi 接入点三角测量。您不应期望水平精度优于 65m。试图用 65 米精度的仪器检测 10 米的运动根本行不通。

我不知道iOS在被要求监控半径小于100m的区域时做了什么。充其量它只是将半径增加到 100。在这种情况下,您的应用仍然可以工作,但可能不是它预期的方式。

要从评论中回答您的问题,恐怕 Apple 没有提供对其核心定位技术的深入见解。这就是开发人员之间存在很多困惑的原因,因为似乎没有任何东西能按预期工作。对于初学者来说,核心位置 API 旨在实现最佳实践以最大程度地减少电池消耗。

如果您想使用小于 ~300 米(是的,三百米)的定位服务,则必须使用 GPS。地理围栏无法跟上不断行走的用户的步伐。但是,在后台持续运行 GPS 是不行的,因为你会很快耗尽电池,你的应用程序很快就会从用户手机中退出。

地理围栏不需要 GPS,但会很乐意使用可用的 GPS 数据(即使 GPS 更新是由另一个应用程序请求的)。 GPS 辅助地理围栏的工作非常精确,但我看不出有什么好的理由同时使用这两种服务,因为只需将位置管理器过滤器设置到正确的距离就更简单了。

关于ios - 位置管理器 didExitRegion 未被调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36486202/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com