我正在开发一个应用程序,我需要定期更新用户的位置,但是当应用程序暂停或在后台运行时,我无法获得位置更新。我还在功能中启用了后台位置更新。
viewDidLoad代码:
override func viewDidLoad() {
super.viewDidLoad()
locationManager.delegate = self
locationManager.desiredAccuracy = kCLLocationAccuracyBest
locationManager.allowsBackgroundLocationUpdates = true
locationManager.requestAlwaysAuthorization()
locationManager.requestWhenInUseAuthorization()
let user=FIRAuth.auth()?.currentUser?.displayName
if(CLLocationManager.authorizationStatus() == CLAuthorizationStatus.authorizedAlways || CLLocationManager.authorizationStatus() == CLAuthorizationStatus.authorizedWhenInUse){
locationManager.requestLocation()
location=locationManager.location
locationManager.startUpdatingLocation()
locationManager.startMonitoringSignificantLocationChanges()
//updating to database
ref.child("\(user!)/lat").setValue(location.coordinate.latitude)
ref.child("\(user!)/long").setValue(location.coordinate.longitude)
//location=locationManager.location
}
}
func locationManager(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {
location=locations[locations.count-1]
}
答案 0 :(得分:0)
启用位置更新 - >背景模式 - >能力
我在后台使用此方法获取位置。这个方法写在AppDelegate类
中 func getLocation() {
self.locationManager = CLLocationManager()
self.locationManager.delegate = self
if self.locationManager.responds(to: #selector(self.requestAlwaysAuthorization)) {
self.locationManager.requestAlwaysAuthorization()
}
self.locationManager.distanceFilter = kCLDistanceFilterNone
self.locationManager.desiredAccuracy = kCLLocationAccuracyBest
if !CLLocationManager.locationServicesEnabled() {
// location services is disabled, alert user
var servicesDisabledAlert = UIAlertView(title: "Alert", message: "Location service is disable. Please enable to access your current location.", delegate: nil, cancelButtonTitle: "OK", otherButtonTitles: "")
servicesDisabledAlert.show()
}
else {
self.locationManager.startUpdatingLocation()
}
}