用户不允许位置服务时无法确定

时间:2015-05-08 03:37:33

标签: ios swift core-location cllocationmanager

我正在请求用户启用位置服务。我想知道用户何时点击Don't Allow以便我可以处理一些通知。但是,单击didFailWithError时未调用didChangeAuthorizationStatusDon't Allow方法。我知道记录器中没有打印任何内容。我附上了一个代码示例。我做错了什么,我该如何解决这个问题。感谢。

import UIKit

import CoreLocation

class AwesomeViewController: UIViewController, CLLocationManagerDelegate {

    let locationManager = CLLocationManager()

    override func viewDidLoad() {
        super.viewDidLoad()

        let authorizationStatus = CLLocationManager.authorizationStatus()

        if(authorizationStatus == .AuthorizedWhenInUse || authorizationStatus == .AuthorizedAlways) {
            // authorization is good
        } else {
            locationManager.requestWhenInUseAuthorization()
        }
    }


    func locationManager(manager: CLLocationManager!, didChangeAuthorizationStatus status: CLAuthorizationStatus) {
        print(status)
    }

    func locationManager(manager: CLLocationManager!, didFailWithError error: NSError!) {            
        print(error.localizedDescription)
    }
}

1 个答案:

答案 0 :(得分:1)

  

未调用didFailWithErrordidChangeAuthorizationStatus方法

这些是委托方法。您的位置管理器没有任何委托 - 当然它没有(AwesomeViewController实例)作为委托。所以它永远不会调用这些方法。您需要设置位置管理器的委托(在这种情况下,您可以将其设置为self)。