如何找出目前在我的UIContainerView中显示的UIViewController?
我已经有一个名为self.containerView
的UIContainerView的IBOutlet。 Everything is working fine。我只需要能够知道当前正在显示哪个VC。
来自APPLE的SNIPPET(链接中有更多内容)
- (void) displayContentController: (UIViewController*) content;
{
[self addChildViewController:content]; // 1
content.view.frame = [self frameForContentController]; // 2
[self.view addSubview:self.currentClientView];
[content didMoveToParentViewController:self]; // 3
}
此处content
当然是对相关VC的引用。