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.

Just started to explore Storyboards in Xcode development. I have first scene with two UIButtons. Both button's segues points at the same scene but with two different scenarios. Am I understood right that for implement this I need to set segue identifier in IB (e.g seg1,seg2) and then in .m implement only one method like this:

- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
 if ([segue.identifier isEqualToString: @"seg1"]) {
 // first scenario
  } else if ([segue.identifier isEqualToString: @"seg2"]) {
 // second scenario
  }
}

If not, how to implement this behavior? Thanks, Alex.

share|improve this question
1  
In first place, don't try to compare strings using == (C basics, lesson 2.) – H2CO3 Nov 10 '12 at 20:22
Thanks! Does -isEqualTo the right way comparing in this case? – Alex Nov 10 '12 at 20:27
1  
No, NSString doesn't recognize isEqualTo:. You should use isEqualToString: – rdelmar Nov 10 '12 at 20:32
1  
@Alexey either isEqualToString: or isEqual: should work – H2CO3 Nov 10 '12 at 20:44
1  
Yep, so you'd then set the appropriate property for your destination controller inside those if statements to get the desired behavior. You're on the right path. – Rob Nov 10 '12 at 21:02
show 2 more comments

1 Answer

up vote 1 down vote accepted

Yes, you are technically correct — the best kind of correct

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.