I\'ve to draw an MKCicle into an MKMapView. Then I\'ve to re-draw it when user, through a slider, change the radius. I remove it and I re-create it, re-adding it to the map.
Fixed. I just add
self.circleView = nil;
before the
[self.mapView addOverlay:self.circle];
in this way it works fine.
Samuel