I have an iPhone app I'm currently building in XCode 4.3 with Storyboard. I have a "root" view controller with two (2) seques to a view controller containing a UIWebView. I want to be able to identify the segue (have already set unique identifiers for both segues) so I can "push" the correct content to the UIWebView, based on which segue was activated in the "root" view controller.
I think I have to use "prepareForSegue" method, but don't know where it would go. Where can I find out how to deal with two segues going to the same view controller? (I have google'd it and found nothing appropriate to my situation).
Here is the code that I'm using:
-(void) prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
if ([segue.identifier isEqualToString:@"helpSegue"]) {
NSLog(@"helpSegue");
}
else if ([segue.identifier isEqualToString:@"reportSegue"]) {
NSLog(@"reportSegue");
}
}
