0
votes

On MKMapView i have for example 100 annotations. When i zoom out the map i need to update only ten new annontations. But the system updates 110 annotations. How to add only new annotations on MKMapView ?

1
that depends. how are you creating a new annotation? - Anurag

1 Answers

1
votes

Have you tried [mapView addAnnotations:additionalAnnotations] ? (where additionalAnnotations is an array of the 'new' annotations)