swift 轉場動畫 從左到右

原文鏈接
轉場動畫

需求:

  • 點擊導航欄左上角,出現(xiàn)一個左側菜單
  • 左側菜單覆蓋住 原控制器的一半
  • 左側菜單的出現(xiàn)順序為:從左至右
Snip20170704_9.png

實現(xiàn)

  • 左側菜單為 UIViewController,
  • UIViewController 半透明狀態(tài)伞访,可以看到 原控制器的數(shù)據(jù)
  • 使用轉場動畫實現(xiàn)左側菜單的動畫效果
  • 使用 modalPresentationStyle 做出 半透明效果
  • ViewController 控制器為 第一控制器侨把, 以后簡稱 A控制器。
  • SecondVC 控制器為 第二控制器,以后簡稱 B控制器
  • FadeAnimator 類 是 用來寫 轉場動畫的類诊胞。

demo地址

demo地址

實現(xiàn)代碼

  • 在 FadeAnimator 類中實現(xiàn) 動畫,代碼如下:
//
//  FadeAnimator.swift
//  LeftView
//
//  Created by study on 2017/6/30.
//  Copyright ? 2017年 WY. All rights reserved.
//

import UIKit


enum AnimationType {
    case present
    case dismiss
}

class FadeAnimator: NSObject , UIViewControllerAnimatedTransitioning {
    
    let duration = 1.5
    var animationType: AnimationType?
    
    
    // 指定轉場動畫持續(xù)的時間
    func transitionDuration(using transitionContext: UIViewControllerContextTransitioning?) -> TimeInterval {
        return duration
    }
    
    func animateTransition(using transitionContext: UIViewControllerContextTransitioning) {
        
        let toViewController = transitionContext.viewController(forKey: UITransitionContextViewControllerKey.to)
        let fromViewController = transitionContext.viewController(forKey: UITransitionContextViewControllerKey.from)
        
        let toView = toViewController?.view
        let fromView = fromViewController?.view
        
        let transitionTime = transitionDuration(using: transitionContext)
        let aDelay: TimeInterval = 0
        let aUsing: CGFloat = 0.5
        let aInitSprVel: CGFloat = 0
        
        if animationType == AnimationType.present {
            
            //snapshot方法是很高效的截屏

            // first 放下面
            let snap = fromView?.snapshotView(afterScreenUpdates: true)
            transitionContext.containerView.addSubview(snap!)
            
            //Third放上面
            let snap2 = toView?.snapshotView(afterScreenUpdates: true)
            transitionContext.containerView.addSubview(snap2!)
            
            snap2?.transform = CGAffineTransform(translationX: -320, y: 0)
            
            UIView.animate(withDuration: transitionTime, delay: aDelay, usingSpringWithDamping: aUsing, initialSpringVelocity: aInitSprVel, options: UIViewAnimationOptions.curveLinear, animations: {
                
                snap2?.transform = CGAffineTransform.identity
            }, completion: { (finished) in
                
                // 刪掉截圖
                snap?.removeFromSuperview()
                snap2?.removeFromSuperview()
                
                // 添加視圖
                transitionContext.containerView.addSubview(toView!)
                
                // 結束 Transition
                let aDidCom = transitionContext.transitionWasCancelled
                transitionContext.completeTransition(!aDidCom)
            })
        }
        else {
            // Third 放下面
            let snap = toView?.snapshotView(afterScreenUpdates: true)
            transitionContext.containerView.addSubview(snap!)
            
            // first 放上面
            let snap2 = fromView?.snapshotView(afterScreenUpdates: true)
            transitionContext.containerView.addSubview(snap2!)
            
            //進行動畫
            UIView.animate(withDuration: transitionTime, delay: aDelay, usingSpringWithDamping: aUsing, initialSpringVelocity: aInitSprVel, options: UIViewAnimationOptions.curveLinear, animations: { 
                
                snap2?.transform = CGAffineTransform(translationX: -320, y: 0)
            }, completion: { (finished) in
                
                // 刪掉截圖
                snap?.removeFromSuperview()
                snap2?.removeFromSuperview()
                
                //添加視圖
                transitionContext.containerView.addSubview(fromView!)
                
                //結束Transition
                let aDidCom = transitionContext.transitionWasCancelled
                transitionContext.completeTransition(!aDidCom)
            })
        }
    }
}
  • 在A控制器中 創(chuàng)建一個按鈕锹杈,用來跳轉到B頁面:
    override func viewDidLoad() {
        super.viewDidLoad()
     
        let btn = UIButton(type: .contactAdd)
        btn.frame = view.bounds
        btn.setTitle("跳轉第二頁", for: .normal)
        btn.addTarget(self, action: #selector(clickBtn), for: .touchUpInside)
        self.view.addSubview(btn)
    }

  • 在 跳轉的方法中 半透明效果
func clickBtn(){
        let secod = SecondVC()
        
        /// 半透明效果
        self.modalPresentationStyle = .custom
        self.definesPresentationContext = true

        secod.view.backgroundColor = UIColor.init(red: 255/255.0, green: 255/255.0, blue: 255/255.0, alpha: 0.5)
        /// 半透明效果
        secod.modalPresentationStyle = .overCurrentContext
        
        /// 轉場動畫的代理撵孤,在 A類中實現(xiàn)
        secod.transitioningDelegate = self
        /// 使用 present 進行跳轉
        present(secod, animated: true, completion: nil)
 }
  • 轉場動畫的代理,在A類中實現(xiàn)
extension ViewController: UIViewControllerTransitioningDelegate {
     // 提供彈出時的動畫
    func animationController(forPresented presented: UIViewController, presenting: UIViewController, source: UIViewController) -> UIViewControllerAnimatedTransitioning? {
        transition.animationType = AnimationType.present
        return transition
    }
    
    // 提供消失時的動畫
    func animationController(forDismissed dismissed: UIViewController) -> UIViewControllerAnimatedTransitioning? {
        
        transition.animationType = AnimationType.dismiss
        return transition
    }
}
  • B控制器中實現(xiàn)的代碼只有 一個返回按鈕(demo中)
//
//  SecondVC.swift
//  LeftView
//
//  Created by study on 2017/6/30.
//  Copyright ? 2017年 WY. All rights reserved.
//

import UIKit

class SecondVC: UIViewController {

    override func viewDidLoad() {
        super.viewDidLoad()

        let btn = UIButton(type: .contactAdd)
        btn.frame = CGRect(x: 50, y: 100, width: 200, height: 100)
        btn.setTitle("回到第一頁", for: .normal)
        btn.backgroundColor = UIColor.red
        btn.addTarget(self, action: #selector(clickBtn), for: .touchUpInside)
        self.view.addSubview(btn)
    }
    
    func clickBtn(){
        dismiss(animated: true, completion: nil)
    }
}

------------------- 我是懶惰的分界線----------------

下列方法也可以進行跳轉嬉橙,只需要把 present (XXX)方法替換成此方法就好早直,缺點是寥假,跳轉的時候會有黑色的一閃而過

import UIKit

extension UIViewController {
    /// 從左到右
    func presentDetailFromeLeftToRight(_ viewControllerToPresent: UIViewController) {
        let animation = CATransition()
        animation.duration = 0.5
        animation.type = kCATransitionPush
        animation.subtype = kCATransitionFromLeft
        animation.timingFunction = CAMediaTimingFunction(name: kCAMediaTimingFunctionEaseOut)
        
        
        self.view.window?.layer.add(animation, forKey: kCATransition)
        
        present(viewControllerToPresent, animated: false, completion: nil)
    }
    
    /// 從右到左
    func dismissDetailFromeRightToLeft(){
        let animation = CATransition()
        animation.duration = 0.5
        animation.type = kCATransitionPush
        animation.subtype = kCATransitionFromRight
        self.view.window?.layer.add(animation, forKey: kCATransition)
        
        dismiss(animated: false, completion: nil)
    }
}
最后編輯于
?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
  • 序言:七十年代末市框,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子糕韧,更是在濱河造成了極大的恐慌枫振,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,042評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件萤彩,死亡現(xiàn)場離奇詭異粪滤,居然都是意外死亡,警方通過查閱死者的電腦和手機雀扶,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,996評論 2 384
  • 文/潘曉璐 我一進店門杖小,熙熙樓的掌柜王于貴愁眉苦臉地迎上來肆汹,“玉大人,你說我怎么就攤上這事予权“好悖” “怎么了?”我有些...
    開封第一講書人閱讀 156,674評論 0 345
  • 文/不壞的土叔 我叫張陵扫腺,是天一觀的道長岗照。 經(jīng)常有香客問我,道長笆环,這世上最難降的妖魔是什么攒至? 我笑而不...
    開封第一講書人閱讀 56,340評論 1 283
  • 正文 為了忘掉前任,我火速辦了婚禮躁劣,結果婚禮上迫吐,老公的妹妹穿的比我還像新娘。我一直安慰自己习绢,他們只是感情好渠抹,可當我...
    茶點故事閱讀 65,404評論 5 384
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著闪萄,像睡著了一般梧却。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上败去,一...
    開封第一講書人閱讀 49,749評論 1 289
  • 那天放航,我揣著相機與錄音,去河邊找鬼圆裕。 笑死广鳍,一個胖子當著我的面吹牛,可吹牛的內容都是我干的吓妆。 我是一名探鬼主播赊时,決...
    沈念sama閱讀 38,902評論 3 405
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼行拢!你這毒婦竟也來了祖秒?” 一聲冷哼從身側響起,我...
    開封第一講書人閱讀 37,662評論 0 266
  • 序言:老撾萬榮一對情侶失蹤舟奠,失蹤者是張志新(化名)和其女友劉穎竭缝,沒想到半個月后,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體沼瘫,經(jīng)...
    沈念sama閱讀 44,110評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡抬纸,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 36,451評論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了耿戚。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片湿故。...
    茶點故事閱讀 38,577評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡阿趁,死狀恐怖,靈堂內的尸體忽然破棺而出坛猪,到底是詐尸還是另有隱情歌焦,我是刑警寧澤,帶...
    沈念sama閱讀 34,258評論 4 328
  • 正文 年R本政府宣布砚哆,位于F島的核電站独撇,受9級特大地震影響,放射性物質發(fā)生泄漏躁锁。R本人自食惡果不足惜纷铣,卻給世界環(huán)境...
    茶點故事閱讀 39,848評論 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望战转。 院中可真熱鬧搜立,春花似錦、人聲如沸槐秧。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,726評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽刁标。三九已至颠通,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間膀懈,已是汗流浹背顿锰。 一陣腳步聲響...
    開封第一講書人閱讀 31,952評論 1 264
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留启搂,地道東北人硼控。 一個月前我還...
    沈念sama閱讀 46,271評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像胳赌,于是被迫代替她去往敵國和親牢撼。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 43,452評論 2 348

推薦閱讀更多精彩內容