标签: swift xcode11 ios13
我目前正在尝试使用iOS 13 SDK,并尝试从其他视图中呈现出我的代码中的新视图。
在iOS 13之前,我一直使用:
self.present(self.storyboard?.instantiateViewController(withIdentifier: "Login") as! UIViewController, animated: true)
为此。
它仍在工作,并显示了视图,但显示为Modal,用户可以将其关闭,这是不可能的。
我已经尝试使用self.show()和modalPresentationStyle属性,但是结果始终相同(参见图片)。