swift3 - iOS10的新动画api

新API - UIViewPropertyAnimator

UIViewPropertyAnimator是在iOS10才出现的一个用于动画的类,现在我们可以像看视频一样�暂停、跳转、回滚创造出来的动画。

测试环境

系统版本

10.11.5 Beta

Swift版本

Xcode8 beta 6(swift 3.0)

快速实现

playground是个玩耍的好地方,尝试一下吧~

创建简单动画场景

import UIKit
import PlaygroundSupport

public class TestPropertyAnimatorView:UIView {
    var imageView:UIImageView!
    var animator:UIViewPropertyAnimator!
    
    override init(frame: CGRect) {
        super.init(frame: frame)
        initView()
        initAnimator()
    }

    required public init?(coder aDecoder: NSCoder) {
        fatalError("init(coder:) has not been implemented")
    }

    //添加需要做动画的View
    func initView() {
        let image = UIImage(named: "growingup_108")
        imageView = UIImageView(image: image)
        imageView.frame = imageViewStartFrame()
        
        imageView.center = {
            let x = (frame.minX + imageView.frame.width / 2)
            let y = (frame.maxY - imageView.frame.height / 2)
            
            return CGPoint(x: x, y: y)
        }()
        self.addSubview(imageView)
    }
}

extension TestPropertyAnimatorView {
    public func initAnimator() {
        animator = UIViewPropertyAnimator(duration: 5, curve: UIViewAnimationCurve.easeIn)
    }
    
    //添加动画
    public func initAnimations() {
        print("initAnimations")
        imageView.frame = CGRect(x: 0, y: 0, width: 108, height: 108)
        self.imageView.transform = CGAffineTransform(scaleX: 1, y: 1)
        imageView.center = {
            let x = (frame.minX + imageView.frame.width / 2)
            let y = (frame.maxY - imageView.frame.height / 2)
            
            return CGPoint(x: x, y: y)
        }()
        
        animator.addAnimations {
            self.imageView.center = liveView.center
        }
        
        animator.addAnimations {
            self.imageView.transform = CGAffineTransform(scaleX: 2, y: 2)
        }
        
        animator.addCompletion {
            position in
            switch position {
            case .end:
                print("动画结束回调: 动画结束")
            case .current:
                print("动画结束回调: 动画在当前进度结束")
            case .start:
                print("动画结束回调: 动画回滚结束")
            }
        }
    }
}

试试在Playground中运行

//创建liveView
let liveView = TestPropertyAnimatorView(frame: CGRect(x: 0, y: 0, width: 500, height: 500))

//设置为当前展示的View
PlaygroundPage.current.liveView = liveView
liveView.initAnimations()
liveView.animator.startAnimation()
�继续往下看

添加上控制器试试

动画状态切换逻辑

ios10_animations_status.jpg

创建EventListener.swift

import Foundation

public class EventListener: NSObject {
    public var eventFired: (() -> ())?
    
    public func handleEvent() {
        eventFired?()
    }
}

添加Controller

public enum ButtonType {
    case start,
    pause,
    stop,
    reverse,
    finishAtCurrent,
    jumpTo
}


public protocol ControllerBarAnimationProtocol {
    func initAnimator()
    func initAnimations()
    func addController(animator:UIViewPropertyAnimator)

}
public class ControllerBar:UIView {
    var delegate:ControllerBarAnimationProtocol?
    
    var slider:UISlider!
    var jumpToPositionButton:UIButton!
    var startButton:UIButton!
    var pauseButton:UIButton!
    var reverseButton:UIButton!
    var stopButton:UIButton!
    var finishAtCurrentButton:UIButton!

    var sliderEventListener:EventListener!
    var jumpToPositionButtonEventListener:EventListener!
    var startButtonEventListener:EventListener!
    var pauseButtonEventListener:EventListener!
    var reverseButtonEventListener:EventListener!
    var stopButtonEventListener:EventListener!
    var finishAtCurrentButtonEventListener:EventListener!
    
    var animator:UIViewPropertyAnimator!
    var isPaused:Bool = false

    init(frame: CGRect, animator:UIViewPropertyAnimator, delegate:ControllerBarAnimationProtocol?) {
        super.init(frame: frame)
        self.animator = animator
        self.delegate = delegate
        initView()
    }

    required public init?(coder aDecoder: NSCoder) {
        fatalError("init(coder:) has not been implemented")
    }

    private func initView() {
        func createButton(frame:CGRect, title:String)->UIButton {
            let button = UIButton(frame:frame)
            button.backgroundColor = UIColor.gray
            button.titleLabel?.textColor = UIColor.white
            button.setTitle(title, for: UIControlState.normal)
            return button
        }

        //slider
        slider = UISlider(frame: CGRect(x: 0, y: 0, width: frame.width - 90, height: 50))
        jumpToPositionButton = createButton(frame: CGRect(x: frame.width - 75, y:5, width: 70, height: 40), title: "跳转")

        startButton = createButton(frame: CGRect(x: 0, y: 60, width: 60, height: 40), title:"开始")
        pauseButton = createButton(frame: CGRect(x: 70, y: 60, width: 60, height: 40), title:"暂停")
        reverseButton = createButton(frame: CGRect(x: 140, y: 60, width: 60, height: 40), title:"回滚")
        stopButton = createButton(frame: CGRect(x: 210, y: 60, width: 60, height: 40), title:"结束")
        finishAtCurrentButton = createButton(frame: CGRect(x: 280, y: 60, width: 150, height: 40), title:"在当前位置结束")

        addSliderEventListener()
        addButtonEventListener(type:.jumpTo)
        addButtonEventListener(type:.start)
        addButtonEventListener(type:.pause)
        addButtonEventListener(type:.reverse)
        addButtonEventListener(type:.stop)
        addButtonEventListener(type:.finishAtCurrent)

        self.addSubview(slider)
        self.addSubview(jumpToPositionButton)
        self.addSubview(startButton)
        self.addSubview(pauseButton)
        self.addSubview(reverseButton)
        self.addSubview(stopButton)
        self.addSubview(finishAtCurrentButton)
    }

    func addSliderEventListener() {
        sliderEventListener = EventListener()

        //添加Slide value变化回调
        sliderEventListener.eventFired = {
            //self.animator.fractionComplete = CGFloat(self.slider.value)
        }

        slider.addTarget(sliderEventListener, action: #selector(EventListener.handleEvent), for: .valueChanged)
    }

    func addButtonEventListener(type:ButtonType) {
        switch type {
        case .jumpTo:
            jumpToPositionButtonEventListener = EventListener()
            jumpToPositionButtonEventListener.eventFired = {
                switch self.animator.state {
                case .active:
                    print("操作:切换动画进度到:\(String(format:"%.2f%%",CGFloat(self.slider.value) * 100))")
                    
                    self.animator.fractionComplete = CGFloat(self.slider.value)
                    break
                default:
                    print("当前状态无法执行切换进度操作")
                    break
                }
            }
            jumpToPositionButton.addTarget(jumpToPositionButtonEventListener, action: #selector(EventListener.handleEvent), for: .touchUpInside)
            break
        case .start:
            startButtonEventListener = EventListener()
            startButtonEventListener.eventFired = {
                switch self.animator.state {
                case .inactive:
                    print("状态:动画尚未开始")
                    print("操作:添加动画并开始")
                    self.delegate?.initAnimations()
                    self.animator.startAnimation()
                    self.isPaused = false
                case .active:
                    print("状态:动画已经开始了")
                default:
                    break
                }
                
            }
            startButton.addTarget(startButtonEventListener, action: #selector(EventListener.handleEvent), for: .touchUpInside)
            break
        case .pause:
            pauseButtonEventListener = EventListener()
            pauseButtonEventListener.eventFired = {
                switch self.animator.state {
                case .inactive:
                    print("状态:动画尚未开始")
                    self.delegate?.initAnimations()
                    self.animator.startAnimation()
                    self.isPaused = false
                case .active:
                    print("状态:动画已经开始了")
                    if self.isPaused {
                        print("当前状态 -> 暂停")
                        print("操作:继续动画过程")
                        self.animator.startAnimation()
                        self.isPaused = false
                    } else {
                        print("当前状态 -> 动画过程中")
                        print("操作:执行暂停操作")
                        self.animator.pauseAnimation()
                        self.isPaused = true
                    }
                    
                default:
                    print("当前状态无法执行暂停或恢复操作")
                    break
                }

            }
            pauseButton.addTarget(pauseButtonEventListener, action: #selector(EventListener.handleEvent), for: .touchUpInside)
            break
        case .reverse:
            reverseButtonEventListener = EventListener()
            reverseButtonEventListener.eventFired = {
                switch self.animator.state {
                case .inactive:
                    print("状态:动画尚未开始,无法执行回滚操作")
                case .active:
                    print("状态:动画已经开始了")
                    if self.isPaused {
                        print("当前状态 -> 暂停")
                        print("操作:继续动画过程并回滚")
                        self.animator.startAnimation()
                        self.isPaused = false
                        self.animator.isReversed = true
    
                    } else {
                        print("当前状态 -> 动画过程中")
                        print("操作:回滚动画")
                        self.animator.isReversed = true
                    }
                    
                default:
                    print("当前状态无法执行回滚操作")
                    break
                }
                
            }
            reverseButton.addTarget(reverseButtonEventListener, action: #selector(EventListener.handleEvent), for: .touchUpInside)
            break
        case .stop:
            stopButtonEventListener = EventListener()
            stopButtonEventListener.eventFired = {
                self.animator.stopAnimation(true)
            }
            stopButton.addTarget(stopButtonEventListener, action: #selector(EventListener.handleEvent), for: .touchUpInside)
            break
        case .finishAtCurrent:
            finishAtCurrentButtonEventListener = EventListener()
            finishAtCurrentButtonEventListener.eventFired = {
                switch self.animator.state {
                    case .active:
                        print("在当前进度结束动画")
                        //仅进入停止状态
                        self.animator.stopAnimation(false)
                        //进入停止状态后调用,结束动画, 状态对应addCompletion的回调返回参数position
                        self.animator.finishAnimation(at:.current)
                    default:
                        print("当前状态无法执行结束动画操作")
                        break
                }
            }
            finishAtCurrentButton.addTarget(finishAtCurrentButtonEventListener, action: #selector(EventListener.handleEvent), for: .touchUpInside)
            break
        }
    }
}

修改TestPropertyAnimatorView

public class TestPropertyAnimatorView:UIView {
    var controllerView:UIView!
    var imageView:UIImageView!
    
    var animator:UIViewPropertyAnimator!
    
    override init(frame: CGRect) {
        super.init(frame: frame)

        initView()
        
        initAnimator()
        addController(animator: animator)

    }

    required public init?(coder aDecoder: NSCoder) {
        fatalError("init(coder:) has not been implemented")
    }

    //添加需要做动画的View
    func initView() {
        let image = UIImage(named: "growingup_108")
        imageView = UIImageView(image: image)
        imageView.frame = CGRect(x: 0, y: 0, width: 108, height: 108)
        
        imageView.center = {
            let x = (frame.minX + imageView.frame.width / 2)
            let y = (frame.maxY - imageView.frame.height / 2)
            
            return CGPoint(x: x, y: y)
        }()
        self.addSubview(imageView)
    }
}

extension TestPropertyAnimatorView: ControllerBarAnimationProtocol {
    public func initAnimator() {
        animator = UIViewPropertyAnimator(duration: 5, curve: UIViewAnimationCurve.easeIn)
    }
    
    public func addController(animator:UIViewPropertyAnimator) {
        
        controllerView = ControllerBar(frame: CGRect(x: 0, y: 0, width: frame.width, height: 100), animator: animator, delegate:self)
        self.addSubview(controllerView)
    }
    
    //添加动画
    public func initAnimations() {
        print("initAnimations")
        imageView.frame = CGRect(x: 0, y: 0, width: 108, height: 108)
        self.imageView.transform = CGAffineTransform(scaleX: 1, y: 1)
        imageView.center = {
            let x = (frame.minX + imageView.frame.width / 2)
            let y = (frame.maxY - imageView.frame.height / 2)
            
            return CGPoint(x: x, y: y)
        }()
        
        animator.addAnimations {
            self.imageView.center = liveView.center
        }
        
        animator.addAnimations {
            self.imageView.transform = CGAffineTransform(scaleX: 2, y: 2)
        }
        
        animator.addCompletion {
            position in
            switch position {
            case .end:
                print("动画结束回调: 动画结束")
            case .current:
                print("动画结束回调: 动画在当前进度结束")
            case .start:
                print("动画结束回调: 动画回滚结束")
            }
        }
    }
}

再试试在Playground中运行

//创建liveView
let liveView = TestPropertyAnimatorView(frame: CGRect(x: 0, y: 0, width: 500, height: 500))

//设置为当前展示的View
PlaygroundPage.current.liveView = liveView
liveView.initAnimations()
liveView.animator.startAnimation()

添加了动画控制器,再来看一下吧

查看UIViewPropertyAnimator playground demo源码

https://github.com/huhuegg/Demo/tree/master/Playground/UIViewPropertyAnimator%20Playground.playground

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

推荐阅读更多精彩内容

  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 12,016评论 4 62
  • 需求 Font Awesome是个好东西,绝对是前端开发者必不可少的矢量字体图标库,有了它,再也不需要各种小图片各...
    陆志均阅读 926评论 0 0
  • 更新过程 componentWillReceiveProps shouldComponentUpdate comp...
    Jack_Peng阅读 268评论 0 0
  • 9.28,终于结束了战斗,去了个不好不坏的学校,向当初的自己妥协,并向自己约定未来的三年一定是在这个城市最后的时光...
    火山是太阳阅读 234评论 3 1
  • 冬月日暄初雪远,山中霜冷晚芳凋。 疏林如晦烟枝袅,衰柳似金旧絮消。 冻浦凫雏波渺渺,故园楼阁路迢迢。 休思梦里凄凉...
    绿窗幽梦阅读 227评论 5 6