Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to trigger a storyboard segue from a UI element which isn't in my storyboard (in this case, it's a UIAlertView). As such, I can't draw the arrow from any of the existing components in my storyboard.

What's the proper way to deal with this situation? I need a segue with an identifier, so that I can call it from the relevant UIAlertView button.

share|improve this question
please read the answers of this question before accepting further answers to your questions stackoverflow.com/questions/7845832/how-to-perform-a-segue – MicRO Dec 10 '12 at 12:05

1 Answer

up vote 3 down vote accepted

You can add your segue by right click + drag from your source controller to your destination controller in your Storyboard. Then just click on the created segue and set the identifier. You can trigger your segue programmatically like this:

// Note: In this example self is the source controller
// (the controller that holds the segue)
[self performSegueWithIdentifier:@"mySegue" sender:self];

Here is a screenshot you can use as a reference:

enter image description here

share|improve this answer
Wonderful, thankyou! Didn't realise I could do it from the controller itself like this. – lukech Dec 10 '12 at 12:32

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.