我的应用程序通过重要位置更改服务进行了基于位置的更新。它在以前的最新iOS和Xcode版本上完美运行。 我有用于位置更新的应用程序寄存器'在plist。我有以下代码(从以前的应用程序中使用不同的本地范围粘贴)
class LocationTracker: NSObject, CLLocationManagerDelegate {
private let manager: CLLocationManager = CLLocationManager()
override init () {
super.init()
manager.delegate = self
manager.requestAlwaysAuthorization()
// I do make sure SLC is available before calling this
manager.startMonitoringSignificantLocationChanges()
}
我没有在iPhon6模拟器上看到提示,我的应用在设置 - > myapp或设置 - >隐私 - >位置
中没有与位置相关的项目我可以做些什么才能让它再次发挥作用?
由于
Jitendra