我想在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
有谁知道我为什么会收到上述错误?
答案 0 :(得分:1)
您是否告诉XCode您的应用需要访问位置信息?我认为这是项目配置中的'特权'或类似内容。