I'm using this function to change the location of the map marker based on user selection:
let annotation = MKPointAnnotation() //global reused annotation object
func setPin(mapView: MKMapView, longitude: Double, latitude: Double, title: String) {
annotation.coordinate = CLLocationCoordinate2D(latitude: latitude, longitude: longitude)
annotation.title = title
mapView.addAnnotation(annotation)
}
The coordinates and title changes repeatedly, so I'm a little concerned if this is the correct approach. The MKPointAnnotation object is instantiated only once, as a global, and only its contents are updated when the setPin() function is called. So far, it's been working without issue, besides the glitch with the simulator not refreshing/rendering the title sometimes.
Would doing this cause any leaks? Am I missing any steps to free the obejct or remove it from the map before reusing it, perhaps?
TIA.