我正在尝试在 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找到了上面的代码
有谁知道我为什么会收到上述错误?