You just need to find the instance of MKAnnotationView that you want to select and call -setSelected:animated:.
For example, you can encode MKMapView annotations as follows:
for (YOURCLASSHERE *a in mapView.annotations) {
if ([a isKindOfClass:[YOURCLASSHERE class]]) {
[[mapView viewForAnnotation:a] setSelected:YES animated:YES];
}
}
YOURCLASSHERE - , MKAnnotation.
, , .