位置许可检查和授权

时间:2016-08-02 17:24:27

标签: ios swift permissions location mapkit

我希望我的程序在地图上显示用户位置。它开始工作然后随机停止所以我添加下面的代码试图解决它,但我有问题。提前致谢!

    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()
    }

3 个答案:

答案 0 :(得分:11)

你需要打电话,

locationManager.requestAlwaysAuthorization() 

以及

 locationManager.requestWhenInUseAuthorization()

在前景中顺利使用位置!!!

并且您不需要两个实例来调用startupdatinglocation。留一个。你应该使用实例或全局变量而不是local来获取整个范围内的位置。

更新:

您必须在info.plist中设置两个密钥,例如NSLocationAlwaysUsageDescriptionNSLocationWhenInUseUsageDescription及其使用说明。

答案 1 :(得分:4)

我遇到了同样的问题,即使在info.plist中设置了NSLocationAlwaysUsageDescriptionNSLocationWhenInUseUsageDescription也是如此。我的调试器告诉我也设置NSLocationAlwaysAndWhenInUseUsageDescription ...所以我做了。它奏效了!

答案 2 :(得分:1)

如果要“ WhenInUse”通知,则应仅在info.plist中添加“隐私-使用时的位置使用情况说明”,但如果要“始终”访问,则info.plist看起来应像此info.plist截图:

Image

您无需添加任何请求授权,例如requestAlwaysAuthorization或requestWhenInUseAuthorization