In my Xcode 4.2 storyboard, i have 2 UIViewControllers, This one time and In band camp

  • In This one time, i have a UIButton with "silly name" on it
  • In In band camp, i have a UILabel with "label" on it

Considering that we're dealing with 2 separate classes AND we're in Xcode 4.2 using storyboards (where transition between views is setup via a segue) how can i pass "silly name" from view controller This one time to the label in view controller In band camp?"

enter image description here

link|improve this question

I don't have an answer but your question is so awesome! – r3st0r3 Nov 5 '11 at 13:28
feedback

2 Answers

up vote 5 down vote accepted
  1. Set the name of segue in storyboard to "AwesomeSegue"
  2. Implement prepareForSegue method
  3. Inside the method, check if name of segue matches "AwesomeSegue" - if yes, use the destinationViewControllerObject

    - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
        if ([segue.identifier isEqualToString:@"AwesomeSegue"]) {
            InBandCampViewController *ibcVC = [segue destinationViewController];
            ibcVC.yourData = self.someStuff;
        }
    }
    
link|improve this answer
feedback

Navigating view controllers

About 2/3 down, look for this:

UINavigationController *navigationController = 
  [[tabBarController viewControllers] objectAtIndex:0];
PlayersViewController *playersViewController = 
  [[navigationController viewControllers] objectAtIndex:0];

Hope this helps.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.