如何检测“想用你当前的位置”选择行动?

时间:2013-04-18 03:58:53

标签: iphone ios gps cllocationmanager

我们知道CLLocationManager可以用来获取警报权限的当前位置:“MyAppName”想要使用当前位置“|”不允许“|”允许“。如何我们可以在用户选择“不允许”或“允许”后检测到选择操作吗?任何帮助都将不胜感激!

1 个答案:

答案 0 :(得分:4)

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

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

实施CLLocationManagerDelegate并使用此委托方法