位置权限检查与授权

问题描述 投票:0回答:4

我希望我的程序在地图上显示用户位置。 它首先工作然后随机停止,所以我添加了下面的代码来尝试修复它,但我遇到了问题。提前致谢!

    override func viewDidLoad()
    {
        super.viewDidLoad()
        self.locationManager.delegate = self
        self.locationManager.desiredAccuracy = kCLLocationAccuracyBest
        if CLLocationManager.locationServicesEnabled()
        {

            let status: CLAuthorizationStatus = CLLocationManager.authorizationStatus()
            if status == CLAuthorizationStatus.NotDetermined
            {
                locationManager.requestAlwaysAuthorization()
            }
            } else {

                print("locationServices disenabled")
            }
            locationManager.startUpdatingLocation()
            self.locationManager.startUpdatingLocation()
            self.mapView.showsUserLocation = true
            mapView.delegate = self
            centerMapOnLocation(initialLocation)
            addBoundry()
    }
ios swift permissions location mapkit
4个回答
19
投票

您需要致电,

locationManager.requestAlwaysAuthorization() 

还有

 locationManager.requestWhenInUseAuthorization()

在前台也能顺利使用位置!!!

并且您不需要两个实例来调用

startupdatinglocation
。保留一个。您应该使用实例或全局变量而不是本地变量来获取整个范围内的位置。

更新:

您必须在

info.plist
中设置两个键,例如
NSLocationAlwaysUsageDescription
NSLocationWhenInUseUsageDescription
及其使用说明。


5
投票

即使在 info.plist 中设置了

NSLocationAlwaysUsageDescription
NSLocationWhenInUseUsageDescription
,我也遇到了同样的问题。我的调试器告诉我还要设置
NSLocationAlwaysAndWhenInUseUsageDescription
...所以我就这么做了。成功了!


5
投票

如果您想要“WhenInUse”通知,您应该只在 info.plist 中添加“隐私 - 使用时位置使用说明”,但如果您想要“始终”访问,您的 info.plist 应该如下 info.plist 屏幕截图所示:

Image

您不必添加任何请求授权,例如 requestAlwaysAuthorization 或 requestWhenInUseAuthorization


1
投票

这是我的代码:

首先导入库:

import CoreLocation

一个小例子:

let status = CLLocationManager.authorizationStatus()
if status == .notDetermined || status == .denied || status == .restricted
{
  locationManager?.requestAlwaysAuthorization()
}

不要忘记在 Info.plist 中添加这些权限:

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.