我希望使用UIModalTransitionStyle通过pushViewController将上下文传递到我的导航堆栈中。感谢
,它正在为模态工作nav.modalPresentationStyle = UIModalPresentationStyle.overCurrentContext
pushViewController有没有相同的内容?
答案 0 :(得分:0)
对于其他控制器转换动画,我建议使用此库:
https://github.com/lkzhao/Hero
然后你可以像这样推动你的导航控制器:
let vc = ViewController()
vc.hero.modalAnimationType = .slideLeft
hero.replaceViewController(with: vc)
它有足够的动画类型,并在其页面上记录。