0

如何找出当前在我的 UIContainerView 中显示的 UIViewController?

我的 UIContainerView 已经有一个 IBOutlet,名为self.containerView. 一切正常。我只需要能够知道当前显示的是哪个 VC。

来自苹果的片段(链接中有更多内容)

- (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 的引用。

4

0 回答 0