美文网首页
iOS 按钮缩放效果

iOS 按钮缩放效果

作者: 苏东没有坡 | 来源:发表于2019-04-22 17:07 被阅读0次

建个UIView延展, 方便所有UIView子类都可以使用

extension UIView {
    func zoomLoopAnimation() {
        let animation = CABasicAnimation(keyPath: "transform.scale")
        animation.duration = 0.8   // 设置动画时间
        animation.repeatCount = 100000
        animation.autoreverses = true
        animation.fromValue = 1
        animation.toValue = 1.1
        animation.isRemovedOnCompletion = false  // 这个属性是为了离开页面后动画仍然存在
        self.layer.add(animation, forKey: "scale-layer")
    }
}

相关文章

网友评论

      本文标题:iOS 按钮缩放效果

      本文链接:https://www.haomeiwen.com/subject/ltlugqtx.html