MapView问题 - 地图重新加载时更改颜色

时间:2013-03-27 11:52:10

标签: xcode mkmapview mkpinannotationview

刷新完成后,我遇到了PIn color mapView的问题。 在我的应用程序中,我用两种颜色显示一些点,以便识别服务是否可用。 在第一次启动时,不会出现任何问题。代码是关注者:

    - (void)viewDidLoad
{
    [super viewDidLoad];
    [self dowloadPoint];    // here I exucte the first start 

}

- (void)dowloadPoint{
    NSURL *url1 =[NSURL URLWithString:@"http:MYUSRL"];
    NSData *datos1 =[[NSData alloc] initWithContentsOfURL:url1];

        [self plotBarPosition:datos_string1];     //Here I call the plotBarPosition method
}


- (void)plotBarPosition:(NSString *)datos_string1 {

    for (id<MKAnnotation> annotation in _mapView.annotations) {
        [_mapView removeAnnotation:annotation];
    }

    // Parse the string into JSON
    NSDictionary *json = [(NSDictionary*)[datos_string1 JSONValue]objectForKey:@"features"];

    // Get the objects you want, e.g. output the second item's client id
    NSArray *items_properties = [json valueForKeyPath:@"properties"];
    NSArray *items_geo = [json valueForKeyPath:@"geometry"];

        for (int i = 0; i < [json count]; i++){

            NSString *nomprePunto =[[items_properties objectAtIndex:i] objectForKey:@"title"]; 

            NSNumber *lat =[[[items_geo objectAtIndex:i] objectForKey:@"coordinates"] objectAtIndex:0];


            NSNumber *lon =[[[items_geo objectAtIndex:i] objectForKey:@"coordinates"] objectAtIndex:1];

            CLLocationCoordinate2D coordinate;
            coordinate.latitude = lat.doubleValue;
            coordinate.longitude = lon.doubleValue;

            //ESTADO
            NSString *description = [[items_properties objectAtIndex:i] objectForKey:@"description"];
            NSString *estado_punto = [[NSString alloc]init];

            if ([description rangeOfString:@"Averiado"].location == NSNotFound) {
                estado_punto = @"Available";
            } else {
                estado_punto = @"NOt Available";
                averiados ++;
             }
            NSString *averiadosStr = [NSString stringWithFormat:@"%d",averiados];
           averiadosLabel.text = averiadosStr;

            MyLocation *location =[[MyLocation alloc] initWithName:nomprePunto coordinate:coordinate estado:estado_punto];

            [_mapView addAnnotation:location];
    }


}



- (MKPinAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(MyLocation *)annotation {

        static NSString *identifier = @"MyLocation";
        if ([annotation isKindOfClass:[MyLocation class]]) {
            MKPinAnnotationView *annotationView = (MKPinAnnotationView *) [_mapView dequeueReusableAnnotationViewWithIdentifier:identifier];

            if (annotationView == nil) {
                annotationView = [[MKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:identifier];

                annotationView.enabled = YES;
                annotationView.canShowCallout = YES;

                if([[annotation estado] isEqualToString:@"En Servicio"])
                annotationView.pinColor = MKPinAnnotationColorGreen;

                } else {
                annotationView.annotation = annotation;
            }

            return annotationView;
        }

        return nil;
    }

但是当我添加一个refres按钮时,函数只是再次刷新dowloadPoint,

- (IBAction)refresh{

    [self dowloadPoint];
}

引脚的颜色以“随机方式”变化,而不是与实际的点状态相对应。 关于发生了什么的任何想法?提前谢谢。

编辑:它的问题是由于:

for (id<MKAnnotation> annotation in _mapView.annotations) {
    [_mapView removeAnnotation:annotation];
}
删除它,应用程序正常工作,但引脚区域淹没了以前的应用程序......:S

1 个答案:

答案 0 :(得分:1)

引脚的默认颜色为红色。如果estado对象的MyLocation属性等于@"En Servicio",则将其设置为绿色。我了解,当estado属性等于@"En Servicio"时,有时颜色为红色,有时属性为MyLocation,有时颜色为绿色。
一个原因可能是当您按下刷新按钮时,MyLocation对象就不再存在了。在这种情况下,您可能仍然有一个指向它曾经存在的内存位置的指针,但此位置可能已被任何内容覆盖,从而导致颜色随机。
这可能发生在例如如果您的{{1}}对象已创建为返回主事件循环时已释放的自动释放对象,即处理用户交互。
如果您使用ARC,则情况不应如此。