无法在macOS应用的swift 4中获取当前位置的纬度和经度值,而是在控制台中收到错误消息
“与名为com.apple.locationd.desktop.synchronous的服务的连接已无效。” UserInfo = {NSDebugDescription =与名为com.apple.locationd.desktop.synchronous的服务的连接已失效。}
注册计时器已过期,但是客户端仍在注册!
class ViewController: NSViewController, CLLocationManagerDelegate
{
let locationManager = CLLocationManager()
}
override func viewDidLoad(){
super.viewDidLoad()
locationManager.delegate = self
locationManager.desiredAccuracy = kCLLocationAccuracyBest
locationManager.startUpdatingLocation()
print (locationManager.location?.coordinate.latitude ?? 0);
print (locationManager.location?.coordinate.longitude ?? 0);
}
func locationManager(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {
print (locationManager.location?.coordinate.latitude ?? 0);
print (locationManager.location?.coordinate.longitude ?? 0);
}
在info.plist中启用了i aslo的隐私检查
而不是在控制台中获取坐标值,而是收到上述错误消息。在Mac上启用了定位服务。代码有什么问题?
答案 0 :(得分:0)
此错误消息表示未授予该应用程序访问用户位置的权限。要解决此问题,您需要确保将应用程序正确“沙盒化”,并确保该位置已启用。您可以通过以下步骤在Xcode中执行此操作:
现在,下次您运行应用程序时,它将要求他们的用户允许其使用当前位置。假设他们的回答是肯定的,那么您应该不再看到错误,而是应该看到地图上突出显示的当前位置。