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.
==(C basics, lesson 2.) – H2CO3 Nov 10 '12 at 20:22isEqualToString:orisEqual:should work – H2CO3 Nov 10 '12 at 20:44