只是试图确定用户的位置。这是代码:
self.locationManager = [[CLLocationManager alloc] init];
//self.locationManager.delegate = self;
self.locationManager.distanceFilter = 80.0;
[self.locationManager startUpdatingLocation];
self.geoCoder = [[CLGeocoder alloc] init];
[self.geoCoder reverseGeocodeLocation: self.locationManager.location completionHandler:
^(NSArray *placemarks, NSError *error) {
CLPlacemark *placemark = [placemarks objectAtIndex:0];
UIAlertView *locationAlert = [[UIAlertView alloc] initWithTitle:@"Location" message:[NSString stringWithFormat:@"The app has determined that your country is: %@ (%@)", placemark.country, placemark.ISOcountryCode] delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alert show];
}];
第一次运行该应用程序时,我会弹出双重警报。locationAlert 首先弹出,通知用户一个(空)国家,然后几乎同时弹出默认弹出窗口,表明该应用程序想使用我的位置。如果我单击“是”,下次我运行该应用程序时,我将获得用户正确国家/地区的单一弹出窗口。
所以我的问题是,我怎样才能首先获得访问用户位置的权限,然后运行此代码来查找他们的位置,而不会因为我在未经许可的情况下查询他们的位置而得到空响应?