UINavigationController自定义转换删除下面的视图

时间:2014-09-29 11:58:56

标签: ios objective-c uiviewcontroller uinavigationcontroller uikit

我正在使用:

实现我自己的UINavigationController转换
- (id<UIViewControllerAnimatedTransitioning>)navigationController:(UINavigationController *)navigationController
                              animationControllerForOperation:(UINavigationControllerOperation)operation
                                           fromViewController:(UIViewController *)fromVC
                                             toViewController:(UIViewController *)toVC{
    return self;
}

但是,一旦转换完成,推送viewController.view就会消失。我使用

呈现视图
[self.navigationController pushViewController:pushedViewController animated:YES];

当我使用UINavigationController推送它们时,有没有办法告诉TransitionCoordinator不要删除呈现控制器的视图?我是否真的需要用所有逻辑实现我自己的ContainerView?

1 个答案:

答案 0 :(得分:0)

我完成了自己的ContainerViewController。现在我完全控制了观看次数。寿命。