问题:
在顶部,您可以看到旧视图,如果按住第二个视图的顶部并移至底部,则第二个视图将消失。 我希望第二个视图在第一个视图上覆盖。 第一个视图带有一个带有操作的按钮:
@IBaction func test() {
let vc = self.storyboard!.instantiateViewController(withIdentifier: "ccc")
self.show( vc, sender: nil )
}
答案 0 :(得分:2)
只需将modalPresentationStyle
更改为.fullScreen
。
//1
let vc = self.storyboard!.instantiateViewController(withIdentifier: "ccc")
//2
vc.modalPresentationStyle = .fullScreen
//3
self.present(vc, animated: true, completion: nil)