我被要求在两个UIViewController
之间添加一个完全自定义的过渡,并提出了这个解决方案。它有效,但我不知道是否有更好/更优雅的方式来做它。
完全自定义,我的意思是涉及修改第一个视图控制器子视图(移动它们,不仅是褪色或其他),能够改变持续时间等。
我想知道两件事:
由于几行代码优于千言万语,因此这是一个非常简单的例子:
// Considering that self.mainView is a direct subview of self.view
// with exact same bounds, and it contains all the subviews
DCSomeViewController *nextViewController = [DCSomeViewController new];
UIView *nextView = nextViewController.view;
// Add the next view in self.view, below self.mainView
[self.view addSubview:newView];
[self.view sendSubviewToBack:newView];
[UIView animateWithDuration:.75f animations:^{
// Do any animations on self.mainView, as nextView is behind, you can fade, send self.mainView to wherever you want, change its scale...
self.mainView.transform = CGAffineTransformMakeScale(0, 0);
} completion:^(BOOL finished) {
// Push the nextViewController, without animation
[self.navigationController pushViewController:vc animated:NO];
// Restore old
self.backgroundImageView.transform = CGAffineTransformIdentity;
}];
我已经仔细检查了一些我认为可能出错的事情:
self.view
遭受任何更改nextView
不再位于self.view
。感谢您的意见。
答案 0 :(得分:2)
在ViewControllers之间进行转换有不同的方法。您的代码有效,但您可以采用更正式的方式。
使用方法transitionFromViewController:toViewController:
查看教程:http://www.objc.io/issue-1/containment-view-controller.html#transitions
或者您可以使用UIViewControllerContextTransitioning
查看教程:http://www.objc.io/issue-5/view-controller-transitions.html和http://www.teehanlax.com/blog/custom-uiviewcontroller-transitions/