I'm trying to capture MapKit pin tap selection selection to perform segue to the detail view for this location, I have a property in the annotation pin for that:
#import <MapKit/MapKit.h>
@interface alrededorLocation : NSObject <MKAnnotation> {
NSString *_name;
NSString *_address;
CLLocationCoordinate2D _coordinate;
NSDictionary *additionalInfo;
}
But I'm not able to capture the pin selection to perform the segue, I tried controlling it in - (void)mapView:(MKMapView *)mapView didSelectAnnotationView:(MKAnnotationView *)view
But I wasn't successful to get the selected pin reference.
Many thanks
mapView:annotationView:calloutAccessoryControlTapped:method. Here's the official documentation from Apple. – Adis Apr 23 '12 at 11:20