MKMapView で場所を表示しようとしています。mapViewController のロード中に、コンソールに次のエラー メッセージが表示されます。
__GEORegisterNetworkDefaults_block_invoke_0: com.apple.geod.defaults で geod に接続できませんでした
アプリケーションに xcode 4.3 と iOS 5.1 を使用しています。
次のコードを使用してアドレスを表示しています。
- (void) showAddress
{
MKCoordinateRegion region;
MKCoordinateSpan span;
span.latitudeDelta = 0.2;
span.longitudeDelta = 0.2;
CLLocationCoordinate2D location = [self addressLocation];
region.span = span;
region.center = location;
}
そして、次のコードから住所の場所を取得します。
-(CLLocationCoordinate2D) addressLocation
{
NSString *urlString = [NSString stringWithFormat:@"http://maps.google.com/maps/geo?q=%@&output=csv",
[@"cupertino" stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
NSError *err;
NSString *locationString = [NSString stringWithContentsOfURL:[NSURL URLWithString:urlString] encoding:NSUTF8StringEncoding error:&err];
NSArray *listItems = [locationString componentsSeparatedByString:@","];
double latitude = 0.0;
double longitude = 0.0;
if([listItems count] >= 4 && [[listItems objectAtIndex:0] isEqualToString:@"200"])
{
latitude = [[listItems objectAtIndex:2] doubleValue];
longitude = [[listItems objectAtIndex:3] doubleValue];
}
CLLocationCoordinate2D location;
location.latitude = latitude;
location.longitude = longitude;
return location;
}
mapkit チュートリアルについてグーグルで検索すると、http://mithin.in/2009/06/22/using-iphone-sdk-mapkit-framework-a-tutorial から上記のコードが見つかりました
上記のエラーが発生する理由を知っている人はいますか?