Storyboard Segue to Multiple Views?

You need to create the two segues from your view controller, not from the button. In the storyboard, control-drag from the view controller to where you want the segue to go. Repeat for the other segue.

Click on each segue and give them unique identifiers (for this demo I'll use "segue1" and "segue2").

Up vote 1 down vote favorite share g+ share fb share tw.

I am setting up a bunch of view controllers in my storyboard and have a 'Next' button. I need this to segue to two different view however my storyboard won't allow it. For example if certain criteria are met the next button will go to one view, if not, it will go to the other view.

Any help much appreciate achieving this. Thanks. Iphone objective-c storyboard link|improve this question asked 10 hours agoJosh Kahane1,263427 98% accept rate.

You need to create the two segues from your view controller, not from the button. In the storyboard, control-drag from the view controller to where you want the segue to go. Repeat for the other segue.

Click on each segue and give them unique identifiers (for this demo I'll use "segue1" and "segue2"). Then, go to your ViewController that initiated the segues. You need to set an action up for your button.

-(void)buttonPressed:(UIButton*)sender{ if(criteria met){ self performSegueWithIdentifier:@"segue1" sender:self; } else { self performSegueWithIdentifier:@"segue2" sender:self; } } Sender is self in this case because it is the view controller causing the segue, not the button directly. You will also need to implement prepareForSegue.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions