を返します。私は多くのことを検索しただけでエラーがここに0または1ではない9.CLGeocoder reverseGeocodeLocationは、私はこの記事によるます逆ジオコーディングでiOSアプリを開発しています「kCLErrorDomainエラー9」
はviewDidLoad
で私のコードですがあります。
self.locationManager = [[CLLocationManager alloc]init];
self.locationManager.delegate = self;
self.locationManager.distanceFilter = 80.0;
[self.locationManager startUpdatingLocation];
CLGeocoder *geocoder = [[[CLGeocoder alloc] init] autorelease];
[geocoder reverseGeocodeLocation:self.locationManager.location
completionHandler:^(NSArray *placemarks, NSError *error) {
NSLog(@"reverseGeocodeLocation:completionHandler: Completion Handler called!");
if (error){
NSLog(@"Geocode failed with error: %@", error);
return;
}
if(placemarks && placemarks.count > 0)
{
//do something
CLPlacemark *topResult = [placemarks objectAtIndex:0];
NSString *addressTxt = [NSString stringWithFormat:@"%@ %@,%@ %@",
[topResult subThoroughfare],[topResult thoroughfare],
[topResult locality], [topResult administrativeArea]];
NSLog(@"%@",addressTxt);
}
}];
はどうもありがとうございました。
私のコードに何もしていない間、シミュレータはエラー8を返します。 – goofansu
CLLocationManager、CLGeocoderシミュレータで動作しません。デバイス上のデバッグ時またはデバイス上のテスト時にのみ結果が表示されます。シミュレータにエラーが表示されます。 –
これは私のiPhone 4デバイスの魅力のように機能します。ありがとう! – gstroup