iOS移动开发我是程序员;您好程先生;叫我序员就好了

iOS8定位

2015-05-27  本文已影响92人  ForeverYoung21
    Info.plist 增加一条 NSLocationWhenInUseUsageDescription-String-提示信息

   override func viewDidAppear(animated: Bool) {
        super.viewDidAppear(animated)

        self.checkLocationAuthorizationStatus()
    }

    func checkLocationAuthorizationStatus() {
        if CLLocationManager.authorizationStatus() == .AuthorizedWhenInUse {
            self.mapView.showsUserLocation = true  //使用前需要进行授权检查
        } else {
            self.locationManager.requestWhenInUseAuthorization()
        }    
    }
上一篇 下一篇

猜你喜欢

热点阅读