私たちが知っているCLLocationManager
ように、アラートの許可を得て現在の場所を取得するために使用できます: "MyAppName" Does Like to Use Your Current Location" | "Don't Allow" | "Allow".ユーザーは「許可しない」または「許可する」を選択しますか?
質問する
953 次
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 に答える