在情节提要中的视图之间切换

时间:2019-12-27 10:51:23

标签: ios swift xcode

问题:

enter image description here

在顶部,您可以看到旧视图,如果按住第二个视图的顶部并移至底部,则第二个视图将消失。 我希望第二个视图在第一个视图上覆盖。 第一个视图带有一个带有操作的按钮:

@IBaction func test() {
    let vc = self.storyboard!.instantiateViewController(withIdentifier: "ccc")
    self.show( vc, sender: nil )
}

1 个答案:

答案 0 :(得分:2)

只需将modalPresentationStyle更改为.fullScreen

//1
let vc = self.storyboard!.instantiateViewController(withIdentifier: "ccc")

//2
vc.modalPresentationStyle = .fullScreen

//3
self.present(vc, animated: true, completion: nil)