UIViewController双模态演示

时间:2018-06-02 04:17:09

标签: uiviewcontroller uikit

我想做两个模态演示。我有WorkspaceViewController显示主要内容。有一些屏幕加载项目,保存项目,我喜欢这些弹出作为模态。但最重要的是,我有错误,加载或警告VC我想要突破所有这些。但似乎UIViewController模态演示并不支持这一点。如何完成这种基本的演示风格?

1 个答案:

答案 0 :(得分:1)

您当时不能从一个UIViewController实例中呈现两个模态。 如果您想呈现模态顶部的UIAlertController,可以使用新的UIWindow

详情请看:How to present UIAlertController when not in a view controller? 要么 ios - present UIAlertController on top of everything regardless of the view hierarchy