我有ContainerViewController
,其中包含ChildViewController
。现在,我想使用自定义转换来展示ChildViewController
ModalViewController
。
问题在于我的UIViewControllerTransitioningDelegate
方法
func animationController(forPresented presented: UIViewController, presenting: UIViewController, source: UIViewController) -> UIViewControllerAnimatedTransitioning? {}
提供ContainerViewController
作为presenting
常量。
有没有办法让ChildViewController
作为呈现常数?
谢谢!