在模态视图控制器上呈现模态视图控制器

问题描述 投票:4回答:3

我有一个视图控制器VC1,从一些其他VC0模拟全屏显示。在我的故事板中,我有一个从VC1到VC2的模态segue也在全屏显示。在我的应用程序中,我可以在VC0上通过VC0清楚地看到VC2,因为它们的某些部分视图是透明的。完善。

但是,我要多次重用VC2,所以我不想为我的故事板中的每个控制器设置一个segue,所以我想以编程方式完成同样的事情。但是,当我调用presentViewController:animated:VC1中的完成以呈现VC2时,VC1的视图在模态转换完成时消失。当VC2被解除时,VC1的视图在转换动画完成时重新出现。

如何以编程方式获得与使用storyboard segue时相同的效果?

ios modal-dialog transition
3个回答
16
投票
let newView = self.storyboard!.instantiateViewControllerWithIdentifier("NewViewController") as! NewViewController

newView.modalPresentationStyle = UIModalPresentationStyle.OverFullScreen

self.presentViewController(newView, animated: true, completion: nil)

8
投票

您需要将呈现的控制器的modalPresentationStyle属性设置为UIModalPresentationOverFullScreen。在调用presentViewController:animated:completion之前设置该属性。


2
投票

你只能出现在一个可见的控制器上,通常是rootViewController。但是当有一个模态呈现的控制器时,它覆盖了根控制器,所以你不能使用它。但你可以提出模态,通过rootViewController.prsentedViewController访问。这是一些代码:

let rootVC = window?.rootViewController
let presentingVC = (rootVC?.presentedViewController ?? rootVC)
presentingVC?.present(myController, animated: true, completion: nil)

你不需要改变modalPresentationStyle

© www.soinside.com 2019 - 2024. All rights reserved.