自定义iOS导航控制器动画:这是错的吗?

时间:2014-01-09 13:46:07

标签: ios objective-c animation uinavigationcontroller pushviewcontroller

我被要求在两个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

感谢您的意见。

1 个答案:

答案 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.htmlhttp://www.teehanlax.com/blog/custom-uiviewcontroller-transitions/