Swift转场动画

源码Github地址

  • 系统模态跳转
// 
open func present(_ viewControllerToPresent: UIViewController, animated flag: Bool, completion: (() -> Void)? = nil)

// 动画风格
public enum UIModalTransitionStyle : Int {

    // 默认,从底部划入
    case coverVertical
    // 切换正反面效果
    case flipHorizontal
    // 渐变效果
    case crossDissolve
    @available(iOS 3.2, *)
    // 翻页效果
    case partialCurl
}
  • 模态跳转退回上一层控制器
 open func dismiss(animated flag: Bool, completion: (() -> Void)? = nil)
  • push动画转场,支持右滑返回,当前控制器不是navigationController的子控制器时无效
open func pushViewController(_ viewController: UIViewController, animated: Bool)
  • push动画转场退回上一层控制器
open func popViewController(animated: Bool) -> UIViewController?
  • push动画转场退回根控制器
 open func popToRootViewController(animated: Bool) -> [UIViewController]? 
  • push动画转场退回指定控制器
open func popToViewController(_ viewController: UIViewController, animated: Bool) -> [UIViewController]? 


以上转场动画为系统提供,可以满足我们大部分使用场景,但是有时候我们可能会遇到特殊的需求,需要我们自定义转场动画

/// 创建一个动画管理类,这个类可以作为所有自定义转场动画的基类
class ZQBaseAninatedTranistion: UIPercentDrivenInteractiveTransition, UIViewControllerAnimatedTransitioning {
    /**动画时长*/
    var animateDuration:TimeInterval = 0.5
    /**判断是否已经弹出*/
    var isPopup:Bool = false
    /**交互状态*/
    var isInteraction:Bool = false
    /**转场上下文*/
    var context:UIViewControllerContextTransitioning?
    /**视图*/
    var containerView:UIView?
    /**当前view*/
    var fromView:UIView?
    /**目标view*/
    var toView:UIView?
    /**当前控制器*/
    var fromViewController:UIViewController?
    /**目标控制器*/
    var toViewController:UIViewController?
    
    /// 设置动画时长
    func transitionDuration(using transitionContext: UIViewControllerContextTransitioning?) -> TimeInterval {
        context = transitionContext
        return animateDuration
    }
    
    /// 执行动画过程
    func animateTransition(using transitionContext: UIViewControllerContextTransitioning) {
        context = transitionContext
        //容器
        containerView = transitionContext.containerView
        //目标控制器
        fromViewController = transitionContext.viewController(forKey: .from)
        toViewController = transitionContext.viewController(forKey: .to)
        fromView = fromViewController?.view
        toView = toViewController?.view
        isPopup ? dismiss():present()
    }
    
    /// 弹出转场动画写在这里
    func present(){
    
    }
    
   
    /// 退回转场动画写在这里
    func dismiss(){
    }
}

实现从微信进入小程序的转场动画及右滑返回动画

class ZQFullCoverAnimatedTranistion: ZQBaseAninatedTranistion {
    //最大偏移位置
    var maxOffset:CGFloat = 0.0
    //最右临界值
    var rightCritcal:CGFloat = 20.0
    //手势
    var leftPanGesture:UIScreenEdgePanGestureRecognizer?
    
    /// 启用边缘滑动返回
    func usingLeftSwipDismiss(view:UIView){
        //监听边缘滑动
        leftPanGesture  = UIScreenEdgePanGestureRecognizer(target: self, action: #selector(self.onEdgeSlide))
        //左侧边缘滑动
        leftPanGesture!.edges = .left
        //添加事件
        view.addGestureRecognizer(leftPanGesture!)
    }
    
    /// 当边缘滑动
    @objc func onEdgeSlide(reco:UIScreenEdgePanGestureRecognizer){
        let point = reco.location(in: reco.view)
        //执行动画转场
        let progress = point.x / reco.view!.bounds.width
        if reco.state == .began {
            //变更状态
            isInteraction = true
            //当开始,复位
            maxOffset = 0.0
            //---------这行很关键-----------
            fromViewController?.dismiss(animated: true, completion: nil)
        } else if reco.state == .changed {
            maxOffset = max(point.x, maxOffset)
            update(progress)
        } else {
            //当结束后
            if point.x >= maxOffset && point.x > rightCritcal {
                //完成退出
                finish()
            }else {
                //取消后恢复
                cancel()
            }
            //变更状态
            isInteraction = false
        }
    }
    
    /// 弹出动画,你可以在这这个方法里面实现你想要的任意动画
    override func present(){
        //目标视图
        let toFrame = context!.finalFrame(for: toViewController!)
        //添加视图
        containerView!.addSubview(toView!)
        let rect = containerView!.bounds
        //设置动画
        toView!.frame = CGRect(x: 0, y: rect.height * 2, width: rect.width, height: rect.height)
        UIView.animate(withDuration: animateDuration, animations: { [weak self] in
            self!.toView!.frame.origin.y = 0
            self!.fromView!.transform = CGAffineTransform(scaleX: 0.95, y: 0.95)
        }) {[weak self] (r) in
            if self!.context!.transitionWasCancelled {
                //操作失败了
                self!.context!.completeTransition(false)
                //移除视图
                self!.toView?.removeFromSuperview()
            }else{
                self!.isPopup = true
                self!.toView?.frame = toFrame
                self!.context!.completeTransition(true)
            }
        }
    }
    
    /// 弹回动画,你可以在这这个方法里面实现你想要的任意动画
    override func dismiss(){
        //添加toView到底部一层
        containerView!.addSubview(toView!)
        containerView!.sendSubviewToBack(toView!)
        //添加视图
        let rect = containerView!.bounds
        //设置动画
        UIView.animate(withDuration: animateDuration, animations: { [weak self] in
            self!.fromView?.frame.origin.y = rect.height * 2
            self!.toView?.transform = .identity
        }) { [weak self] (r) in
            //取消
            if self!.context!.transitionWasCancelled {
                //操作失败
                self!.context?.completeTransition(false)
                self!.toView?.removeFromSuperview()
            }else{
                self!.isPopup = false
                //将原始视图移除
                self!.fromView?.removeFromSuperview()
                //通知系统是否被取消,用于记录动画是否完成
                self!.context!.completeTransition(true)
                //移除手势
                if self!.leftPanGesture != nil && self!.fromView != nil{
                    self!.fromView?.removeGestureRecognizer(self!.leftPanGesture!)
                }
            }
        }
    }
}

调用

class ViewController: UIViewController {
    // 动画
    let tranistionHandler = ZQFullCoverAnimatedTranistion()
    override func viewDidLoad() {
        super.viewDidLoad()

    }

    
    override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
        let vc = ZQFullCoverToViewController()
        /// 设置动画代理
        vc.transitioningDelegate = self
        // 开启右滑返回
        tranistionHandler.usingLeftSwipDismiss(view: vc.view)
        present(vc, animated: true, completion: nil)
    }
}

extension ViewController:UIViewControllerTransitioningDelegate{
    
    /// 弹出
    ///
    /// - Parameters:
    ///   - presented: 目标
    ///   - presenting: 当前
    ///   - source: 资源
    /// - Returns: 自定义的动画
    func animationController(forPresented presented: UIViewController, presenting: UIViewController, source: UIViewController) -> UIViewControllerAnimatedTransitioning? {
        return tranistionHandler
    }
    
    /// 收起
    ///
    /// - Parameter dismissed: 目标
    /// - Returns: 自定义的动画
    func animationController(forDismissed dismissed: UIViewController) -> UIViewControllerAnimatedTransitioning? {
        return tranistionHandler
    }
    
    /// 响应手势操作
    ///
    /// - Parameter animator: tranistionHandler
    /// - Returns: 自定义的动画
    func interactionControllerForDismissal(using animator: UIViewControllerAnimatedTransitioning) -> UIViewControllerInteractiveTransitioning? {
        //避免手势与显示调用冲突,导致无法dismiss
        if !tranistionHandler.isInteraction {
            return nil
        }
        return tranistionHandler
    }
}

源码Github地址

如果有帮到您,请点个喜欢

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,723评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,080评论 2 379
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,604评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,440评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,431评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,499评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,893评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,541评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,751评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,547评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,619评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,320评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,890评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,896评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,137评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,796评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,335评论 2 342

推荐阅读更多精彩内容

  • 前言的前言 唐巧前辈在微信公众号「iOSDevTips」以及其博客上推送了我的文章后,我的 Github 各项指标...
    VincentHK阅读 5,331评论 3 44
  • 原文链接转场动画 需求: 点击导航栏左上角,出现一个左侧菜单 左侧菜单覆盖住 原控制器的一半 左侧菜单的出现顺序为...
    文瑶906阅读 1,954评论 0 1
  • 转场动画 以我们常用的present、push转场动画为例,这种过渡性视图展示效果被抽象成UIViewContro...
    Mcccc阅读 2,764评论 1 3
  • “来说是非者,便是是非人”这句话出自增广贤文,是呀,大家是不是都有点感同身受,有时候自己莫名其妙就被牵扯进...
    monica梅阅读 897评论 0 0
  • 前任到底是个什么样的概念?假如有一天,她突然出现在你的面前,然后要你陪她完成一场旅行,去一个地方,开一间大床房,关...
    七天大圣阅读 600评论 12 6