如何在导航控制器中从下到上而不是从右到左更改 segue 过渡样式?

How to change the segue transition style from bottom to top instead of right to left in navigation controllers?

我正在尝试使用 Segue 更改导航控制器中的过渡动画以从下到上加载新的 UIView 控制器。我相信实现起来不会太难,但可能我无法理解。

我的第一次尝试是使用 Hero 库,但由于某种原因它不起作用。

目前找到的答案只在Objective-C

您可以尝试使用此解决方案以模态方式展示您的新控制器。


let storyboard = UIStoryboard(name: "Storyboard Name", bundle: nil)
let controller = storyboard.instantiateViewController(withIdentifier: "Controller Name
")
self.present(controller, animated: true, completion: nil)