我有一个包含 200 多个对象的数组,我正在尝试对每个对象执行一个循环。
每个对象都有一个是/否字段,我想根据该是/否值显示不同的颜色标记。
从我所看到的情况来看,我的循环首先遍历每个对象,然后在每个对象的末尾添加所有注释。
由于当所有注释都添加到我的地图时,我在循环中通过数组对 yes no 值执行检查,所以当它为所有人绘制时,它将使用数组中最后一个对象的 yes/no 值。
我怎样才能拥有它,以便标记将根据每个单独元素的是/否值而有所不同?
我的代码是
for (i = 0; i < [appDelegate.itemArray count]; i++) {
item_details *tempObj = [appDelegate.itemArray objectAtIndex:i];
location.latitude = [tempObj.lat floatValue];
location.longitude = [tempObj.lon floatValue];
current_yesno = tempObj.yesno;
MapViewAnnotation *newAnnotation = [[MapViewAnnotation alloc]initWithTitle:tempObj.name andCoordinate:location];
[self.mapView addAnnotation:newAnnotation];
[newAnnotation release];
}
我的注释代码如下
- (MKAnnotationView *) mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>) annotation{
MKPinAnnotationView *annView=[[MKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:@"currentloc"];
if(current_yesno == YES){
annView.pinColor = MKPinAnnotationColorGreen;
}
else
{
annView.pinColor = MKPinAnnotationColorRed;
}
annView.animatesDrop=NO;
annView.canShowCallout = YES;
annView.calloutOffset = CGPointMake(-5, 5);
return annView;
}
并current_yesno
在我的 .h 文件中声明。