in iOS6 I noticed the new Container View but am not quite sure how to access it\'s controller from the containing view.
Scenario:
you can write like this
- (IBAction)showDetail:(UIButton *)sender { DetailViewController *detailVc = [self.childViewControllers firstObject]; detailVc.lable.text = sender.titleLabel.text; } }