控制器的自定义转场-翻译-iOS

我写完前面两篇自定义控制器转场文章后,偶然看到这一篇文章Custom Transitions on iOS,对控制器的自定义转场介绍非常到位,我非常喜欢,所以翻译过来加深理解,以下是根据我的理解,对自定义转场的原理进行了翻译,删减过部分内容,增加并补充部分内容,具体的实现讲解见里面demo,我未做翻译。

这篇文章是介绍转场动画系列文章中的一部分,主要告诉大家如何创建自定义的非交互转场动画。

在iOS app上,我们从一个屏幕快速切换到另一个屏幕,大多数使用的是系统标准的转场动画。从iOS7 之后,Apple 为我们提供了可以自定义转场的API。

iOS提供了内置的几种转场的情景:

  • 导航控制器NavigationController从导航栈里push和pop导航;

  • tabbarController切换tab;

  • 任何一个控制器UIViewController,present和dismiss一个控制器;

API Introduction


每一个自定义转场包含三个对象:

  • The from view controller: 转场前的控制器

  • The to view controller:转场后的控制器

  • An animation controller Delegate:转场动画控制器代理,扮演转场动画实施的角色,有三种:UINavigationControllerDelegate,UITabBarControllerDelegate,UIViewControllerTransitioningDelegate,对应上面所说的三种转场情景

发生时机

实现自定义转场和原先系统自带的转场发生的时机是一样的:对于导航控制器UINavigationController的push和pop,调用[self.navigationController pushViewController:viewController animated:YES][self.navigationController popViewControllerAnimated:YES],;对于UITabBarController,则是设置属性selectedIndex或者selectedViewController进行切换时;对于任何一个UIViewController的modal转场,则是[UIViewController presentViewController:​animated:​completion:​]或者‑[UIViewController dismissViewControllerAnimated:​completion:​]

转场动画的实施

使用自定义转场,你需要知道哪个对象扮演着实施转场动画的角色,这可能会比较令人迷惑,因为转场类型比较多,不过,当你熟悉后,发现也很简单,无论哪种转场动画类型,转场动画控制器代理对象,扮演着转场动画的实施这个角色。具体说明如下表:

转场类型 动画的实施
Push and Pop The navigation controller’s delegate实现方法‑navigationController:​animationControllerForOperation:​fromViewController:​toViewController:​
Tab切换 The tab bar controller’s delegate 实现方法 ‑tabBarController:​animationControllerForTransitionFromViewController:​toViewController:​
Present 被modal出来的控制器(The presented view controller)的代理 transitioningDelegate 实现方法 ‑animationControllerForPresentedController:​presentingController:​sourceController:​ 并设置属性‑modalPresentationStyle 为UIModalPresentationCustom
Dismiss 被modal出来的控制器(The presented view controller)的代理 transitioningDelegate 实现方法 ​‑animationControllerForDismissedController:​​ 并设置属性‑modalPresentationStyle 为UIModalPresentationCustom

转场动画的实施具体说明

转场动画的实施对象是任何一个遵守UIViewControllerAnimatedTransitioning protocol的对象,这个协议有两个方法,一个提供动画执行时间​-transitionDuration:​,另一个执行动画​-animateTransition:​,这两个方法都传递了一个转场上下文参数(UIViewControllerContextTransitioning),从转场上下文里可以拿到4个重要的参数。

  • The from view controller:转场前控制器
  • The to view controller:转场后控制器
  • 转场前控制器和转场后控制器的frame
  • The container view:在转场过程中的父视图

注意:

转场动画结束后转场上下文需要调用方法,‑completeTransition:​


好了,这就是你需要了解的自定义转场动画的原理部分

你可能感兴趣的:(控制器的自定义转场-翻译-iOS)