iOS自定义转场动画的几种情况

iOS自定义转场动画的几种情况,第1张

概述iOS自定义转场动画的几种情况 前言 在开发中,无论我们使用 Push 还是 Present 推出新的 ViewController 时,系统为了提高用户体验都会为我们默认加上一些过渡动画.但是,系统默认的动画总是不能满足大家各种各样的需求的,所以系统也为我们提供了在不同场景下自定义过渡动画以及通过手势控制过渡进度的实现方案. 这篇文章记录了自定义转场动画中的几种情况: 模态跳转(Present) 导航控制器跳转(Push) UITabbarController 三方框架--Lottie 效果图 预备 首先,我们现在介绍几个在

前言

在开发中,无论我们使用 Push 还是 Present 推出新的 VIEwController 时,系统为了提高用户体验都会为我们默认加上一些过渡动画。但是,系统默认的动画总是不能满足大家各种各样的需求的,所以系统也为我们提供了在不同场景下自定义过渡动画以及通过手势控制过渡进度的实现方案。

这篇文章记录了自定义转场动画中的几种情况:

模态跳转(Present)导航控制器跳转(Push)UITabbarController三方框架——LottIE

效果图

预备

首先,我们现在介绍几个在自定义转场动画时需要接触的协议:

UIVIEwControllerAnimatedTransitioning: 实现此协议的实例控制转场动画效果。UIVIEwControllerInteractiveTransitioning: 实现此协议的实例控制着利用手势过渡时的进度处理。

我们在定义好了实现上面两个协议的类后,只需要在需要进行转场的地方,提供对应的对象即可。

ps:下面的实例中,请大家忽略动画效果,关注实现。(其实是懒得去写太多动画了。🤦‍♂️)

模态跳转(Present)

场景

self.present(vc!,animated: true) {}self.dismiss(animated: true) {} 

实现步骤

设置将要 present 的 VIEwController 的 TransitioningDelegate 对象,此对象是实现协议 UIVIEwControllerTransitioningDelegate 的实例。实现 UIVIEwControllerTransitioningDelegate 协议中的几个代理方法,返回实现了 UIVIEwControllerAnimatedTransitioning 协议的动画效果控制类。

需要实现的UIVIEwControllerTransitioningDelegate方法:

//返回用于 present 的自定义 Transition 动画optional func animationController(forPresented presented: UIVIEwController,presenting: UIVIEwController,source: UIVIEwController) -> UIVIEwControllerAnimatedTransitioning?//返回用于 dismiss 的自定义 Transition 动画optional func animationController(fordismissed dismissed: UIVIEwController) -> UIVIEwControllerAnimatedTransitioning?

实例

/// 第一个 VC 中点击跳转func presentClick(_ sender: Any) {  let vc = self.storyboard?.instantiateVIEwController(withIDentifIEr: "PresentSecondVIEwController")  vc?.modalPresentationStyle = .fullScreen  vc?.TransitioningDelegate = self  self.present(vc!,animated: true) {}}// 第一个 VC 实现协议,返回控制转场动画效果的实例extension PresentFirstVIEwController: UIVIEwControllerTransitioningDelegate { func animationController(forPresented presented: UIVIEwController,source: UIVIEwController) -> UIVIEwControllerAnimatedTransitioning? {  return normalPresentAnimator() } func animationController(fordismissed dismissed: UIVIEwController) -> UIVIEwControllerAnimatedTransitioning? {  return normalPresentAnimator() }}

导航控制器跳转(Push)

场景

self.navigationController?.pushVIEwController(vc!,animated: true)self.navigationController?.popVIEwController(animated: true)

实现步骤

设置导航控制器 UINavigationController 的 delegate。实现 UINavigationControllerDelegate 协议中的代理方法,返回实现了 UIVIEwControllerAnimatedTransitioning 协议的动画效果控制类。

需要实现的UINavigationControllerDelegate方法:

optional func navigationController(_ navigationController: UINavigationController,animationControllerFor operation: UINavigationController.Operation,from fromVC: UIVIEwController,to toVC: UIVIEwController) -> UIVIEwControllerAnimatedTransitioning?

实例

class PushFirstVIEwController: UIVIEwController { overrIDe func vIEwDIDLoad() {  super.vIEwDIDLoad()  self.navigationController?.delegate = self } @IBAction func pushClick(_ sender: Any) {  let vc = self.storyboard?.instantiateVIEwController(withIDentifIEr: "PushSecondVIEwController")  self.navigationController?.pushVIEwController(vc!,animated: true) }}extension PushFirstVIEwController: UINavigationControllerDelegate { //返回自定义过渡动画 func navigationController(_ navigationController: UINavigationController,to toVC: UIVIEwController) -> UIVIEwControllerAnimatedTransitioning? {  if operation == .pop && fromVC is PushFirstVIEwController {   return nil  }  return normalPushAnimator() }}

UITabbarController

在前面的两个专场实现中,我们在需要转场的类中分别实现了UIVIEwControllerTransitioningDelegate 及 UINavigationControllerDelegate 方法,在这两个协议中,还有这样几个方法:

/// UIVIEwControllerTransitioningDelegateoptional func interactionControllerForPresentation(using animator: UIVIEwControllerAnimatedTransitioning) -> UIVIEwControllerInteractiveTransitioning?optional func interactionControllerFordismissal(using animator: UIVIEwControllerAnimatedTransitioning) -> UIVIEwControllerInteractiveTransitioning?/// UINavigationControllerDelegateoptional func navigationController(_ navigationController: UINavigationController,interactionControllerFor animationController: UIVIEwControllerAnimatedTransitioning) -> UIVIEwControllerInteractiveTransitioning?

上面这几个方法呢?其实就是我们通过利用手势转场时过渡的进度处理方法。我们需要在代理方法中返回一个实现了 UIVIEwControllerInteractiveTransitioning 协议的对象来对转场进度进行控制。下面的 UITabbarController 中我就实现一个利用手势控制转场的例子。 Present 及 Push/Pop 按照相同的思路实现即可。

场景

UITabbarController 在默认的状态下,切换控制器时是没有动画效果的。如果需要动画效果的话,需要我们进行自定义。

实现步骤

设置 UITabbarController 的 delegate。实现 UITabbarControllerDelegate 协议中的代理方法,返回实现了 UIVIEwControllerAnimatedTransitioning 协议的动画效果控制类,以及返回实现了 UIVIEwControllerInteractiveTransitioning 协议的转场进度控制类。
/// 返回实现了 UIVIEwControllerAnimatedTransitioning 协议的实例func tabbarController(_ tabbarController: UITabbarController,animationControllerForTransitionFrom fromVC: UIVIEwController,to toVC: UIVIEwController) -> UIVIEwControllerAnimatedTransitioning?/// 返回实现了 UIVIEwControllerInteractiveTransitioning 协议的实例func tabbarController(_ tabbarController: UITabbarController,interactionControllerFor animationController: UIVIEwControllerAnimatedTransitioning) -> UIVIEwControllerInteractiveTransitioning?

实例

class TabbarController: UITabbarController,UITabbarControllerDelegate { overrIDe func vIEwDIDLoad() {  super.vIEwDIDLoad()  self.delegate = self}func tabbarController(_ tabbarController: UITabbarController,to toVC: UIVIEwController) -> UIVIEwControllerAnimatedTransitioning? { if self.selectedindex == 0 {  return Tabbaranimator(edge: .right) } else {  return Tabbaranimator(edge: .left) }}func tabbarController(_ tabbarController: UITabbarController,interactionControllerFor animationController: UIVIEwControllerAnimatedTransitioning) -> UIVIEwControllerInteractiveTransitioning? { if self.panGesture.state == .began || self.panGesture.state == .changed {  return TabbarInteractionTransition(pan: self.panGesture) } else {  return nil }}

三方框架——LottIE

介绍

LottIE 是 AndroID 和 iOS 的移动库,用 bodymovin 解析 Adobe After Effects 导出为 Json 的动画并在移动设备上生成矢量动画。设计师可以轻松的创建漂亮(复杂)的动画,无需程序员辛苦地手动去创建及调试。

场景

实现一些特殊的转场,且程序员无足够时间调试动画时。

实现步骤

在工程中导入 LottIE 框架。在需要转场的类中,将 LottIE import。因为 LottIE 实现的转场实际上是 Present 的转场,所以设置将要 Present 的控制器的 TransitioningDelegate。实现 UIVIEwControllerTransitioningDelegate 协议中的几个代理方法,返回利用转场动画 Json 文件初始化的 LOTAnimationTransitionController 的实例。

ps:LottIE 转场的 LOTAnimationTransitionController 在 3.0.0 版本后被移除,所以需要使用 LottIE 做转场时,需要在导入时,指定版本号为更早的版本。我这里使用的是 2.5.3。

实例

/// 第一个 VCfunc presentClick(_ sender: Any) { let vc = self.storyboard?.instantiateVIEwController(withIDentifIEr: "LottIESecondVIEwController") vc?.TransitioningDelegate = self self.present(vc!,animated: true) {}}/// 实现 UIVIEwControllerTransitioningDelegate,返回 LOTAnimationTransitionController 的实例extension LottIEFirstVIEwController: UIVIEwControllerTransitioningDelegate { func animationController(forPresented presented: UIVIEwController,source: UIVIEwController) -> UIVIEwControllerAnimatedTransitioning? {  let TransitionController = LOTAnimationTransitionController(animationnamed: "Count",fromLayernamed: "",tolayernamed: "",applyAnimationtransform: false)  return TransitionController } func animationController(fordismissed dismissed: UIVIEwController) -> UIVIEwControllerAnimatedTransitioning? {  let TransitionController = LOTAnimationTransitionController(animationnamed: "Three",applyAnimationtransform: false)  return TransitionController }}

总结

上面的所有动画的示例可以在我的Github上找到哦,各位前快去下载把玩吧。

好的转场动画,在用户交互上会带来更加美妙的体验。让用户尽享丝滑哦。

好了,以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对我们的支持。

总结

以上是内存溢出为你收集整理的iOS自定义转场动画的几种情况全部内容,希望文章能够帮你解决iOS自定义转场动画的几种情况所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1109852.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-29
下一篇 2022-05-29

发表评论

登录后才能评论

评论列表(0条)

保存