将ViewController插入另一个后面

时间:2014-07-28 13:48:49

标签: ios objective-c

我目前有一个加载webView的主UIViewController。根据在webView中单击的按钮,我有另一个UIViewController,它在主UIViewController上方加载另一个webView。

我在主要的UIViewController中做了一些事情:

self.newView = [[NewUIView alloc] initWithParam:param];
if (self.currentPlayer) {
  [self presentViewController:self.newView animated:NO completion:nil];
}

我想知道是否有一种方法可以将新的UIViewController 置于主要的UIViewController后面

感谢任何帮助。

感谢。

1 个答案:

答案 0 :(得分:0)

您可以查看UIViewController Containment ...它允许您让一个视图控制器控制多个其他视图控制器:

http://www.objc.io/issue-1/containment-view-controller.html