我使用部分卷曲作为模型过渡样式,但在它呈现之后,如果我触摸屏幕的任何顶部,它将带我到前一个视图控制器。 这是我用来呈现的代码
let vc = UIStoryboard(name: "Main", bundle: nil).instantiateViewController(withIdentifier: "MainTabBarViewController") as! UITabBarController
vc.modalTransitionStyle = .partialCurl
self.present(vc, animated: true, completion: nil)
谢谢!提前