iOS动画指南 - 7.简化动画实现的EasyAnimation库

本文需要环境及语言: Xcode8.0,swift3.0
EasyAnimation支持OC和swift3.0之前的版本

1. 开篇

在动画实现过程中,一个看似简单的效果往往需要大量的代码,尤其是作用于layer上的动画.为此有了EasyAnimation这个库,这个库可以将Layer Animations写成View Animations的样式.

关于View Animations可以看这篇:iOS动画指南 - 1.View Animations
关于Layer Animations可以看这篇:iOS动画指南 - 2.Layer Animations的基本使用以及iOS动画指南 - 3.Layer Animations的进阶使用

EasyAnimation是老外写的动画库,目前有2K多star.
直达:https://github.com/icanzilb/EasyAnimation

话不多说上代码.例如,要做一个渐变的圆角,以前我们会这样做:

        let cornerRadius = CABasicAnimation(keyPath: "cornerRadius")
        cornerRadius.isRemovedOnCompletion = false
        cornerRadius.fillMode = kCAFillModeBoth
        cornerRadius.fromValue = 0
        cornerRadius.toValue = 20
        cornerRadius.duration = 0.5
        cornerRadius.beginTime = CACurrentMediaTime() + 0.3
        dogImageView.layer.add(cornerRadius, forKey: nil)

用了EasyAnimation可以直接这样:

        UIView.animate(withDuration: 0.5, delay: 0.33, options: [], animations: {
            self.dogImageView.layer.cornerRadius = 20
            }, completion: nil)

2. 基本使用

1. 简单使用
          // 重复 往返 有一个开始和结束的加速度 
        UIView.animate(withDuration: 2.0, delay: 0, options: [.repeat, .autoreverse, .curveEaseInOut], animations: {
            
            // 位置的修改不用EasyAnimation也可以做到
            self.dogImageView.layer.position.x += 180
            
            // 圆角和边框宽度
            self.dogImageView.layer.cornerRadius = 20
            self.dogImageView.layer.borderWidth = 2
            
            // 添加一个3D旋转效果
            var trans3d = CATransform3DIdentity
            trans3d.m34 = -1.0/500.0
            let rotationTransform = CATransform3DRotate(trans3d, CGFloat(-M_PI_4), 0.0, 1.0, 0.0)
            let translationTransform = CATransform3DMakeTranslation(-50.0, 0, 0)
            self.dogImageView.layer.transform = CATransform3DConcat(rotationTransform, translationTransform)
            
        }, completion: nil)

怎么样使用起来是不是要优雅的多啊!用EasyAnimation还有一个好处就是:不会像Layer Animations那样控件位置明明发生了移动,但却还在原先的位置,也就是position.x不是真实的,EasyAnimation就不会有这样的烦恼啦!所有位置都是真实的.

2. 兼容iOS8及之前版本的弹性效果

利用核心动画实现弹性效果这个特性是在iOS9时出来的,如果要使用需要适配iOS9之前的版本.有一个库RBBAnimation可以实现,在EasyAnimation中,iOS9之前是用的RBBAnimation,iOS9是用的CASpringAnimation,所以弹性效果的适配EasyAnimation已经做好啦!

 UIView.animateAndChain(withDuration: 2.0, delay: 0.0, usingSpringWithDamping: 0.25, initialSpringVelocity: 0.0, options: [], animations: {
            
            self.dogImageView.layer.position.x += 180
            self.dogImageView.layer.cornerRadius = 20
            self.dogImageView.layer.borderWidth = 2
        
            self.dogImageView.layer.transform = CATransform3DConcat(
                CATransform3DMakeRotation(CGFloat(-M_PI_2), 0.0, 0.0, 1.0),
                CATransform3DMakeScale(1.33, 1.33, 1.33)
            )
            
            }, completion: nil).animate(withDuration: 2.0, delay: 0.0, options: .repeat, animations: { 
                
                // 回到初始位置,重复执行动画
                self.dogImageView.layer.transform = CATransform3DIdentity
                self.dogImageView.layer.cornerRadius = 0.0
                self.dogImageView.layer.position.x -= 180

                }, completion: nil)

3. 动画组

可能有童鞋注意到了弹性效果回到初始位置的是直接放到了.animate这个闭包中.
EasyAnimation也提供了更加优雅的组动画实现.

        chain = UIView.animateAndChain(withDuration: 1.0, delay: 0.0, options: [], animations: {
            
                    self.dogImageView.center.x += 150.0
            
                }, completion: nil).animate(withDuration: 1.0, animations: {
                
                    self.dogImageView.center.y += 150.0
                
                }).animate(withDuration: 1.0, delay: 0.0, usingSpringWithDamping: 0.2, initialSpringVelocity: 0.0, options: [], animations: {
                
                    self.dogImageView.transform = CGAffineTransform(rotationAngle: CGFloat(-M_PI_2))
                
                }, completion: nil).animate(withDuration: 0.5, animations: {
                    
                    self.dogImageView.center.x -= 150.0
                    
                }).animate(withDuration: 2.0, delay: 0.0, usingSpringWithDamping: 0.2, initialSpringVelocity: 0.0, options: .repeat, animations: {
                    
                    self.dogImageView.center.y -= 150.0
                    self.dogImageView.transform = CGAffineTransform.identity
                    
                }, completion: nil)

EasyAnimation充分利用了swift的链式编程特性.相比View Animations的组动画和Layer Animations组动画都简化了不少.

当然这个组动画也提供了终止设定.

        // 需要当前执行的部分停止后才能执行停止这个动作
        delay(seconds: 4.0) { 
            self.chain.cancelAnimationChain()
        }

3. 实现原理

相信有很多童鞋都发现了EasyAnimation的有些方法怎么和系统的这么像.对的,不是像其实就是.它是怎么做到的呢?

fileprivate static func replaceAnimationMethods() {
        //replace actionForLayer...
        method_exchangeImplementations(
            class_getInstanceMethod(self, #selector(UIView.action(for:forKey:))),
            class_getInstanceMethod(self, #selector(UIView.EA_actionForLayer(_:forKey:))))
        
        //replace animateWithDuration...
        method_exchangeImplementations(
            class_getClassMethod(self, #selector(UIView.animate(withDuration:animations:))),
            class_getClassMethod(self, #selector(UIView.EA_animate(withDuration:animations:))))
        method_exchangeImplementations(
            class_getClassMethod(self, #selector(UIView.animate(withDuration:animations:completion:))),
            class_getClassMethod(self, #selector(UIView.EA_animate(withDuration:animations:completion:))))
        method_exchangeImplementations(
            class_getClassMethod(self, #selector(UIView.animate(withDuration:delay:options:animations:completion:))),
            class_getClassMethod(self, #selector(UIView.EA_animate(withDuration:delay:options:animations:completion:))))
        method_exchangeImplementations(
            class_getClassMethod(self, #selector(UIView.animate(withDuration:delay:usingSpringWithDamping:initialSpringVelocity:options:animations:completion:))),
            class_getClassMethod(self, #selector(UIView.EA_animate(withDuration:delay:usingSpringWithDamping:initialSpringVelocity:options:animations:completion:))))  
    }

其实EasyAnimation需要导入的库的方法就两个:

// 组动画的两个方法
animateAndChain(withDuration:delay:options: animations:completion:)
animateAndChain(withDuration:delay:usingSpringWithDamping:initialSpringVelocity:options:animations:completion:)

原理:

EasyAnimation将上面代码放到了UIView的extension中,在EasyAnimation的initialize()初始化方法中调用上面replaceAnimationMethods方法,而replaceAnimationMethods方法是通过使用runtime的方法替换,将自己自定义的方法与系统的方法进行替换.
所以如果在使用cocoapods的情况下,即使不导入EasyAnimation这个库,那么上面的代码也会被执行.

Swift的Runtime和OC的Runtime是一回事吗?

是的. swift的runtime底层其实还是交给OC的Runtime去执行的.我们都知道OC是门动态语言,而Runtime只能在动态语言中才能使用,但swift虽兼顾了动态语言的语法特性,但本质上还是门静态语言.因为有动态语言的语法特性,所以Runtime也是可以使用的.

什么情况下Swift可以进行方法替换?

对于继承于NSObject的类,通过runtime可以获取到的方法,从而可以完成替换.对于没有继承的swift的纯类,就不可以了.继承于NSObject的类为了能够被运行时调用,又不被Swift静态优化,会自动添加@objcdynamic关键字完成动态替换.
具体细节可以看这篇文章:Swift Runtime分析:还像OC Runtime一样吗?

4. 总结:

本篇大致介绍了下EasyAnimation的使用及原理,有兴趣的童鞋不妨去试试,还是挺好用的,作者一直在维护,已经更新到swift3.0了.🙂

本文整理自:iOS.Animations.by.Tutorials.v2.0
源码 : https://github.com/DarielChen/DemoCode
如有疑问,欢迎留言 :-D

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

推荐阅读更多精彩内容

  • 其实医生最想要的是,创造一个个生命的奇迹。作为医生,我有点惭愧,看完了几部有关医生的电视连续剧,对医生这行职业越来...
    一缕桂花阅读 318评论 2 1
  • 选择从温尼科特的端口进入心理学的汪洋,我想我是幸运的,因为曾经是婴儿的角色,现在是母亲的角色,更能贴...
    仙儿lx阅读 720评论 0 0
  • 寒假漫漫,春节没新意,何不跟着十位巨星一起记单词,我帮你邀请了如下十位好莱坞巨星陪你。 ☃☃☃☃☃☃☃☃☃☃☃☃☃...
    玩英语阅读 890评论 0 5
  • 从第一次写下自已的考研状态,到现在,已经过了百来天。这段时间经历了很多,历练些许。 目标院校从最初的上海国家会计学...
    嗯哼4是我阅读 123评论 0 0