【发布时间】:2023-03-22 09:47:01
【问题描述】:
我有一个ViewController用一个“mainView”,在选择段元素时,我正在加载一些ViewControllers。
let storyboard = UIStoryboard(name: "Main", bundle: nil)
self.vc = storyboard.instantiateViewControllerWithIdentifier("DashboardDetail")
self.vc.view.frame = self.mainView.bounds
self.mainView.addSubview(self.vc.view)
self.addChildViewController(self.vc)
vc.didMoveToParentViewController(self)
这很好用,但我想添加一个动画,使它看起来像 NavigationController 中的“推送”。
我还应该添加相同的动画,以便在删除视图时使其消失。这是我用于删除的代码。
self.vc.willMoveToParentViewController(nil)
self.vc.view.removeFromSuperview()
self.vc.removeFromParentViewController()
有什么线索吗?
【问题讨论】: