views:

25

answers:

1

I am new to using MapKit framework.

I am adding an image to MKAnnotationView object at specific lat-long pair on map, say at (latA, longA).

For the next iteration, i need to remove the annotation added and add new annotation at different lat-long pair, say at (latB, longB).

Let me know of any help.

Thanks @dity@

A: 

Step1: Remove the annotation [self.mapView removeAnnotation:annotation];

Step2: Change/Recreate the annotation, and add it back [self.mapView addAnnotation:annotation]

Mustafa