实现按钮的动画效果

原文链接 ----- sindrilin


在iOS中,每一个UIView都拥有一个与之绑定的CALayer图层对象,其负责视图内容的绘制与显示。
跟前者一样,CALayer也拥有树状的子图层结构,以及相似的接口方法。CALayer是图层的基类,主要提供了视图显示范围、图层结构接口等属性,我们通过使用它的子类。

在控制器的界面中心添加一个圆形的紫色图层:

    let layer = CAShapeLayer()
  
    override func viewDidLoad() {
        super.viewDidLoad()
        
        self.layer.fillColor = UIColor.purple.cgColor
        self.layer.path = UIBezierPath(arcCenter: CGPoint(x: UIScreen.main.bounds.width / 2, y: UIScreen.main.bounds.height / 2), radius: 100, startAngle: 0, endAngle: 2.0*CGFloat(M_PI), clockwise: false).cgPath
        self.view.layer.addSublayer(layer)
        
    }

基础动画


基础动画CABasicAnimation是最常用来实现动画效果的动画类,其继承自CAAnimation动画基类,为图层动画效果实现了一个keyPath属性,我们通过设置这个属性来为对应的keyPath属性值执行动画效果。动画类提供了fromValue和toValue两个属性用来设置动画的起始和结束的值,比如下面一段代码让添加到视图上的紫色图层变得透明:

        let animation = CABasicAnimation(keyPath: "opacity")
        animation.fromValue = NSNumber(value: 1)
        animation.toValue = NSNumber(value: 0)
        animation.duration = 1
        self.layer.add(animation, forKey: nil)

在每一个CALayer中存在着模型、呈现、渲染三种图层树,正是这些图层树共同作用来完成隐式动画。那么使用核心动画的时候,实际上CABasicAnimation会根据动画时长计算出每一帧的动画属性的值,然后实时提交给呈现树来展示对应时间点的视图效果,在动画结束时CAAnimation对象会自动从图层上移除。而由于在整个动画过程模型树的值没有改变,所以在动画结束的时候呈现树会再次从模型树获取图层的属性重新绘制。

解决方式: 取消CAAnimation的自动移除,并且设置在动画结束后保持动画的结束状态

        animation.fillMode = kCAFillModeForwards
        animation.isRemovedOnCompletion = false

扩展之后的按钮只要设置animationType这个属性之后就会实现在点击时的动画效果.

完整代码:


import UIKit




class ViewController: UIViewController {

    @IBOutlet weak var uiButtonName: UIButton!
    
    let layer = CAShapeLayer()
  
    override func viewDidLoad() {
        super.viewDidLoad()
    
        
        uiButtonName.animationType = .Outer
        layer.frame = UIScreen.main.bounds
        self.layer.fillColor = UIColor.purple.cgColor
        self.layer.path = UIBezierPath(arcCenter: CGPoint(x: UIScreen.main.bounds.width / 2, y: UIScreen.main.bounds.height / 2), radius: 100, startAngle: 0, endAngle: 2.0*CGFloat(M_PI), clockwise: false).cgPath

        self.view.layer.addSublayer(layer)
        
    }
    
 
    
    @IBAction func onclick(_ sender: Any) {
        
        
        let opacity = CABasicAnimation(keyPath: "opacity")
        opacity.fromValue = NSNumber(value: 1)
        opacity.toValue = NSNumber(value: 0)
       // opacity.duration = 1
        
        layer.add(opacity, forKey: "opacity")
        
        let scale = CABasicAnimation(keyPath: "transform")
        scale.fromValue = NSValue(caTransform3D: CATransform3DIdentity)
        scale.toValue = NSValue(caTransform3D: CATransform3DMakeScale(2, 2, 2))
     //   scale.duration = 1
 
        
        let group = CAAnimationGroup()
        group.animations = [opacity, scale]
        group.duration = 5
        layer.add(group, forKey: "group")

        
    }
    
    func animationDidStop(_ anim: CAAnimation, finished flag: Bool) {
        if anim is CABasicAnimation {
            let animation = anim as! CABasicAnimation
            if let layer = animation.value(forKey: "animatedLayer") as? CALayer {
                layer.setValue(animation.toValue, forKey: animation.keyPath!)
                layer.removeAllAnimations()
            }
        }
    }
    

    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }
    
    


}


private var kAnimationTypeKey: UInt = 0
private var kAnimationColorKey: UInt = 1

//扩展按钮功能,扩展之后的按钮只要设置animationType这个属性之后就会实现在点击时的动画效果
extension UIButton {
    
    enum LXDAnimationType : String {
        case Inner //动画内扩
        case Outer //动画外扩
    }
    
    //动画类型
    var animationType: LXDAnimationType? {
        get {
            if let type = (objc_getAssociatedObject(self, &kAnimationTypeKey) as? String) {
                return LXDAnimationType(rawValue: type)
            }
            return nil
        }
        set {
            guard newValue != nil else { return }
            self.clipsToBounds = (newValue == .Inner)
            objc_setAssociatedObject(self, &kAnimationTypeKey, newValue!.rawValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC)
        }
    }
    
    //动画颜色
    var animationColor: UIColor {
        get {
            if let color = objc_getAssociatedObject(self, &kAnimationColorKey) {
                return color as! UIColor
            }
            return UIColor.white
        }
        set {
            objc_setAssociatedObject(self, &kAnimationColorKey, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC)
        }
    }
    
    //重写按钮的sendAction方法来执行动画,这个方法在每次按钮发送一个事件时会被调用.
    open override func sendAction(_ action: Selector, to target: Any?, for event: UIEvent?) {
        
        super.sendAction(action, to: target, for: event)
        
        if let type = animationType {
            var rect: CGRect?
            var radius = self.layer.cornerRadius
            
            var pos = touchPoint(event: event)
            let smallerSize = min(self.frame.width, self.frame.height)
            let longgerSize = max(self.frame.width, self.frame.height)
            var scale = longgerSize / smallerSize + 0.5
            
            switch type {
            case .Inner:
                radius = smallerSize / 2
                rect = CGRect(x: 0, y: 0, width: radius*2, height: radius*2)
                break
                
            case .Outer:
                scale = 2.5
                pos = CGPoint(x: self.bounds.width/2, y: self.bounds.height/2)
                rect = CGRect(x: pos.x - self.bounds.width, y: pos.y - self.bounds.height, width: self.bounds.width, height: self.bounds.height)
                break
            }
            
            let layer = animateLayer(rect: rect!, radius: radius, position: pos)
            let group = animateGroup(scale)
            self.layer.addSublayer(layer)
            group.setValue(layer, forKey: "animatedLayer")
            layer.add(group, forKey: "buttonAnimation")
        }
    }
    
    public  func animationDidStop(anim: CAAnimation, finished flag: Bool) {
        if let layer = anim.value(forKey: "animatedLayer") as? CALayer {
            layer .removeFromSuperlayer()
        }
    }
    
    
    //MARK: - Private
    private func touchPoint(event: UIEvent?) -> CGPoint {
        if let touch = event?.allTouches?.first {
            return touch.location(in: self)
        } else {
            return CGPoint(x: self.frame.width/2, y: self.frame.height/2)
        }
    }
    
    private func animateLayer(rect: CGRect, radius: CGFloat, position: CGPoint) -> CALayer {
        let layer = CAShapeLayer()
        layer.lineWidth = 1
        layer.position = position
        layer.path = UIBezierPath(roundedRect: rect, cornerRadius: radius).cgPath
        
        switch animationType! {
        case .Inner:
            layer.fillColor = animationColor.cgColor
            layer.bounds = CGRect(x: 0, y: 0, width: radius*2, height: radius*2)
            break
            
        case .Outer:
            layer.strokeColor = animationColor.cgColor
            layer.fillColor = UIColor.clear.cgColor
            break
        }
        return layer
    }
    
    
    fileprivate func animateGroup(_ scale: CGFloat) -> CAAnimationGroup {
        let opacityAnim = CABasicAnimation(keyPath: "opacity")
        opacityAnim.fromValue = NSNumber(value: 1 as Double)
        opacityAnim.toValue = NSNumber(value: 0 as Double)
        
        let scaleAnim = CABasicAnimation(keyPath: "transform")
        scaleAnim.fromValue = NSValue(caTransform3D: CATransform3DIdentity)
        scaleAnim.toValue = NSValue(caTransform3D: CATransform3DMakeScale(scale, scale, scale))
        
        let group = CAAnimationGroup()
        group.animations = [opacityAnim, scaleAnim]
        group.duration = 0.5
      //  group.delegate = self.animationDidStop(anim: <#T##CAAnimation#>, finished: <#T##Bool#>)
        group.fillMode = kCAFillModeBoth
        group.isRemovedOnCompletion = false
        return group
    }
   
    
}





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

推荐阅读更多精彩内容

  • 在iOS中随处都可以看到绚丽的动画效果,实现这些动画的过程并不复杂,今天将带大家一窥ios动画全貌。在这里你可以看...
    每天刷两次牙阅读 8,478评论 6 30
  • 在iOS中随处都可以看到绚丽的动画效果,实现这些动画的过程并不复杂,今天将带大家一窥iOS动画全貌。在这里你可以看...
    F麦子阅读 5,105评论 5 13
  • 本文转载自:http://www.cocoachina.com/ios/20150105/10812.html 为...
    idiot_lin阅读 1,251评论 0 1
  • 在iOS实际开发中常用的动画无非是以下四种:UIView动画,核心动画,帧动画,自定义转场动画。 1.UIView...
    请叫我周小帅阅读 3,083评论 1 23
  • 显式动画 显式动画,它能够对一些属性做指定的自定义动画,或者创建非线性动画,比如沿着任意一条曲线移动。 属性动画 ...
    清风沐沐阅读 1,930评论 1 5