Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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:
share|improve this question

2 Answers

up vote 4 down vote accepted

You have to use UIViewControllers instance method performSegueWithIdentifier:sender: it initiates the segue with the specified identifier from the view controller’s storyboard file programmatically.

Here is the documentation.

Example code would be: (assuming you are calling this in a view controller.

[self performSegueWithIdentifer:@"You identifier" sender:self];

So for your code it would be:

-(IBAction)goToNextView{
    NSLog(@"The button is clicked");
    [self performSegueWithIdentifer:@"You identifier" sender:self];
}

Don't forget to set the segue identifier in the interface builder and make sure it is exactly typed in code and in interface builder.

share|improve this answer
Hi Pfitz, could you please illustrate me a use example? thanx in advance – Malloc Jan 9 '12 at 13:20
Hi @Malek. I updated my answer and hope it is more clear now – Pfitz Jan 9 '12 at 13:54
Pfitz, Actually, i try it before commenting but i got an error: Receiver Type 'MyFirstViewController' for instance message does not declare a method with selector performSegueWithIdentifer:sender:, also, i try to push the view when click on the right arrow of the PIN when using the Map, so my code is on the calloutAccessoryControlTapped method, i am going to update my post to make my question clear. – Malloc Jan 9 '12 at 14:05
Hi @Pfitz, my post is updated, also, it seems i should make a segue identifier in storyboard, if so,where should i identify it? – Malloc Jan 9 '12 at 14:10
Hi @Malek. Click on the segue in the story board and open the attributes inspector on the right side of Xcode. There you can set the identifier of the segue. – Pfitz Jan 10 '12 at 7:17
show 4 more comments

Malek is correct. Pfitz example does return

Receiver Type 'MyFirstViewController' for instance message does not declare a method with selector performSegueWithIdentifer:sender:

This is due to an typo. The correct method is

[self performSegueWithIdentifier:@"You identifier" sender:self];
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.