gpt4 book ai didi

swift - 位置服务提示/授权未在 macos/swift 中激活

转载 作者:行者123 更新时间:2023-11-30 10:50:18 25 4
gpt4 key购买 nike

无法在 swift 4 for macos 应用程序中获取当前位置的纬度和经度值,而是在控制台中收到错误消息

“与名为 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 中启用了隐私检查

我没有在控制台中获取坐标值,而是收到上面的错误消息。 Mac 上启用位置服务。代码有什么问题?

最佳答案

此错误消息意味着应用程序尚未被授予获取用户位置的权限。要解决此问题,您需要确保应用程序已正确“沙盒化”并且该位置已启用。您可以通过以下步骤在 Xcode 中执行此操作:

  1. 在项目导航器中,单击应用程序的目标。这应该会打开一个带有“常规”、“功能”、“资源标签”等选项卡的 View 。
  2. 点击“功能”选项卡。这将为您提供一个项目列表,例如“应用程序组”、“应用程序沙箱”等。每个项目都有一个“开/关”按钮。
  3. 打开“应用程序沙箱”项,然后按左侧的“>”按钮以显示沙箱内容。
  4. 在“应用数据”部分中,选择“位置”。

现在,下次运行应用程序时,它会要求用户允许它使用当前位置。假设他们的回答是肯定的,您应该不再看到错误,而是应该看到 map 上突出显示的当前位置。

关于swift - 位置服务提示/授权未在 macos/swift 中激活,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54729970/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com