我怎么知道我的应用程序在后台运行?
How can I know my app is working in background?
我写了这个程序,当应用程序在屏幕上显示时它可以工作
如果应用程序在后台,它会停止打印纬度,当我恢复应用程序时,它会重新开始打印。
我已经在 xcode 中启用了后台模式,并且还检查了 Location updates
,为什么我的应用程序仍然没有 运行 在后台?
如果应用程序是运行,只是print
功能在后台不起作用,我怎么知道应用程序是运行?
class ViewController: UIViewController,
CLLocationManagerDelegate {
var locationManager: CLLocationManager = CLLocationManager()
var startLocation: CLLocation!
func locationManager(_ manager: CLLocationManager,
didUpdateLocations locations: [CLLocation])
{
let latestLocation: CLLocation = locations[locations.count - 1]
print(latestLocation.coordinate.latitude)
}
override func viewDidLoad() {
locationManager.desiredAccuracy = kCLLocationAccuracyBest
locationManager.delegate = self
locationManager.requestWhenInUseAuthorization()
locationManager.startUpdatingLocation()
startLocation = nil
}
}
首先,你的问题:
locationManager.requestWhenInUseAuthorization()
这要求您的位置管理器仅在您的应用程序位于前台时更新其位置。您必须将其更改为:
locationManager.requestAlwaysAuthorization()
如果它仍然不起作用,请通过在委托函数中添加打印语句来确保您的位置管理器正在触发更新。
二、如何在后台打印东西:
我最喜欢的方式是在 UserDefaults 中记录内容,因为这些内容在应用重启后仍然存在。例如,我会将打印语句设置为 log
键的值。重新启动后,我将从 log
键读取 UserDefaults 的内容。
如果您的应用程序在后台使用位置信息)。除了在 Info.plist
中设置后台模式功能外,您还必须将 allowsBackgroundLocationUpdates
设置为 YES。否则位置更新仅在前台传送。
如果CLLocationManager是先调用startUpdatingLocation
方法,并且在projectname-Info.plist文件中添加Required Background Modes
-> App registers for location updates.
我写了这个程序,当应用程序在屏幕上显示时它可以工作
如果应用程序在后台,它会停止打印纬度,当我恢复应用程序时,它会重新开始打印。
我已经在 xcode 中启用了后台模式,并且还检查了 Location updates
,为什么我的应用程序仍然没有 运行 在后台?
如果应用程序是运行,只是print
功能在后台不起作用,我怎么知道应用程序是运行?
class ViewController: UIViewController,
CLLocationManagerDelegate {
var locationManager: CLLocationManager = CLLocationManager()
var startLocation: CLLocation!
func locationManager(_ manager: CLLocationManager,
didUpdateLocations locations: [CLLocation])
{
let latestLocation: CLLocation = locations[locations.count - 1]
print(latestLocation.coordinate.latitude)
}
override func viewDidLoad() {
locationManager.desiredAccuracy = kCLLocationAccuracyBest
locationManager.delegate = self
locationManager.requestWhenInUseAuthorization()
locationManager.startUpdatingLocation()
startLocation = nil
}
}
首先,你的问题:
locationManager.requestWhenInUseAuthorization()
这要求您的位置管理器仅在您的应用程序位于前台时更新其位置。您必须将其更改为:
locationManager.requestAlwaysAuthorization()
如果它仍然不起作用,请通过在委托函数中添加打印语句来确保您的位置管理器正在触发更新。
二、如何在后台打印东西:
我最喜欢的方式是在 UserDefaults 中记录内容,因为这些内容在应用重启后仍然存在。例如,我会将打印语句设置为 log
键的值。重新启动后,我将从 log
键读取 UserDefaults 的内容。
如果您的应用程序在后台使用位置信息)。除了在 Info.plist
中设置后台模式功能外,您还必须将 allowsBackgroundLocationUpdates
设置为 YES。否则位置更新仅在前台传送。
如果CLLocationManager是先调用startUpdatingLocation
方法,并且在projectname-Info.plist文件中添加Required Background Modes
-> App registers for location updates.