我是新话,我有问题。
我有这部法律。
for (int i=0; i<2; i++) {
Datos *datos = (Datos *)[arr_datos objectAtIndex:i];
CLLocationCoordinate2D coord;
AnnotationItem *annotationItem = [[AnnotationItem alloc] init];
coord.latitude =[datos.latitud doubleValue];
coord.longitude = [datos.longitud doubleValue];
NSLog(@"coord %f",coord.longitude);
NSLog(@"coord %f",coord.latitude);
[annotationItem setCoordinate:coord];
//[annotationItem setEstacion:estacion];
[mapView_ addAnnotation:annotationItem];
[annotationItem release];
}
The problem that it doesn t done anything
但是,如果对<代码>coord.latitude=40.444和coord.longized=-3.700;
这给我带来了我希望的东西,但我不想这样做,因为我有一阵列,有许多纬度和长足。 谁能帮助我这样做? i 带上<条码>coord.longized=[datos.longizedrotValue];, 它做的是t work?
I m using Xcode 3.2.2
感谢和宽恕我。