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 remo开发者_JS百科ve the annotation added and add new annotation at different lat-long pair, say at (latB, longB).
Let me know of any help.
Thanks @dity@
Step1: Remove the annotation [self.mapView removeAnnotation:annotation];
Step2: Change/Recreate the annotation, and add it back [self.mapView addAnnotation:annotation]
精彩评论