When i push a view using the segues (directly by dragging it on the storyboard) it works fine, and the next view is loaded. However, when i try to implement all this programmatically to push a view when i click on the right arrow of the PIN (in Maps), i am a bit confused:
EDIT
-(void)mapView:(MKMapView *)mapView annotationView:(MKAnnotationView *)view calloutAccessoryControlTapped:(UIControl *)control
{
NSLog(@"calloutAccessoryControlTapped: enseigneDeLaStation");
[self performSegueWithIdentifer:@"You identifier" sender:self];
}
i got this error:
Receiver Type 'MyFirstViewController' for instance message does not declare a method with selector performSegueWithIdentifer:sender: