我目前有一个加载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后面。
感谢任何帮助。
感谢。
答案 0 :(得分:0)
您可以查看UIViewController Containment ...它允许您让一个视图控制器控制多个其他视图控制器: