2

正如我们所知CLLocationManager,在警报许可的情况下可以用来获取当前位置:“MyAppName”想要使用您的当前位置”|“不允许”|“允许”。我们如何检测到之后的选择动作用户选择“不允许”或“允许”?任何帮助将不胜感激!

4

1 回答 1

4
-(void)locationManager:(CLLocationManager *)manager didChangeAuthorizationStatus:   (CLAuthorizationStatus)status {

    if (status == kCLAuthorizationStatusDenied) {
        // Don't Allow
    }
    else if (status == kCLAuthorizationStatusAuthorized) {
        //Allow
    }
}

实现CLLocationManagerDelegate和使用这个委托方法

于 2013-04-18T04:03:56.810 回答