我正在开发一个屏幕,需要使用计时器每 10 分钟更新一次位置。除此之外,它只需要在首次加载时和视图再次向用户显示时更新位置。一旦用户转到另一个视图,它应该停止监视。
我有一个应该这样做的代码,但问题是在任何时候都不会调用didUpdateLocations
方法。此外,地图不显示当前位置(我使用模拟位置)。
我已经正确设置了权限,并且该应用程序在设置为仅显示位置时运行良好。我需要这样做来减少电池消耗。
这是我的相关代码:
在viewDidLoad
:
if #available(iOS 8.0, *) {
self.locationManager.requestAlwaysAuthorization()
}
self.locationManager.allowsBackgroundLocationUpdates = true
self.locationManager.distanceFilter = 1000
self.locationManager.activityType = CLActivityType.automotiveNavigation
self.locationManager.desiredAccuracy = kCLLocationAccuracyBest
self.locationManager.pausesLocationUpdatesAutomatically = false
self.locationManager.startUpdatingLocation()
self.map.showsUserLocation = true
在viewWillAppear
:
self.map.showsUserLocation = true
self.locationManager.startUpdatingLocation()
在viewWillDisappear
:
self.map.showsUserLocation = false
self.locationManager.stopUpdatingLocation()
didUpdateLocations
:(最后一行)
self.locationManager.stopUpdatingLocation()
定时器功能:(这被称为精细)
Timer.scheduledTimer(timeInterval: 600.0, target: self, selector: #selector(HomePageViewController.updateLocationFromTimer), userInfo: nil, repeats: true)
@objc func updateLocationFromTimer()
{
self.locationManager.startUpdatingLocation()
}
我还尝试使用以下代码捕获任何错误:
func locationManager(_ manager: CLLocationManager, didFailWithError error: Error) {
print(error.localizedDescription)
}
但它没有被召唤。
我很想知道为什么位置没有更新以及为什么地图没有显示位置。请帮忙。
确保分配委托:
self.locationManager.delegate = self
我也没有为我工作,发现您设置委托的位置会影响这一点。
例如,这不起作用:
var locationManager = CLLocationManager() {
didSet {
locationManager.delegate = self
}
}
稍后设置它确实按预期工作。不知道为什么说实话,但也许这对某人有帮助。