最近项目要用到有动态效果的switc按钮,效果图如下:
这种效果需要结合帧动画实现,然后赶紧叫UI弄了一组图过来...
首先我们需要自定义一个View
并且把这个View弄成图中的圆角
class DynamicSwitch: UIButton {
override init(frame: CGRect) {
super.init(frame: frame)
setupUI()
}
required init?(coder aDecoder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
private func setupUI() {
// 圆角
layer.cornerRadius = height / 2
layer.masksToBounds = true
}
}
实现帧动画
// 帧动画
for i in 1...22 {
beginImageArray.append(UIImage(named: "switch \(i).png")!)
let imageView = UIImageView(image: UIImage(named: "switch 1.png"))
imageView.center = view.center
imageView.animationImages = beginImageArray
// 动画持续时间 每一帧0.025秒,总共22帧
imageView.animationDuration = 0.025 * 22
imageView.animationRepeatCount = 1
// 动画结束后要把imageView的image属性设置成动画最后的一帧
imageView.image = UIImage(named: "switch 22.png")
imageView.startAnimating()
view.addSubview(imageView)
}
这个时候就可以做出表情原地旋转的效果了
然后我们需要一个渐变的颜色
渐变色可以通过 CAGradientLayer 实现,代码如下:
// 渐变色
let gradientLayer = CAGradientLayer()
gradientLayer.frame = bounds
gradientLayer.colors = [UIColor(red: 255 / 255.0, green: 195 / 255.0, blue: 113 / 255.0, alpha: 1).cgColor, UIColor(red: 255 / 255.0, green: 95 / 255.0, blue: 95 / 255.0, alpha: 1).cgColor]
gradientLayer.startPoint = CGPoint(x: 0, y: 0)
gradientLayer.endPoint = CGPoint(x: 1, y: 0)
view.layer.addSublayer(gradientLayer)
startPoint 和 endPoint 从(0, 0)到(1, 0)代表的是水平方向的渐变色。
这时候我们的控件看起来长这样子:
动画结合
整体的动画实际上就是imageView水平方向平移 + 帧动画,这时候我们通过一个bool类型来判断是从左到右还是从右到左:
// 点击的时候调用
func beginAnimation() {
let duration = flag ? 0.0175
* 21 : 0.0225 * 21
customImageView.animationDuration = duration
customImageView.animationRepeatCount = 1
isEnabled = false
customImageView.animationImages = flag ? beginImageArray : endImageArray
customImageView.image = flag ? UIImage(named: "switch 22.png") : UIImage(named: "switch 1.png")
UIView.animate(withDuration: duration, animations: { [unowned self] in
self.customImageView.minX = self.flag ? self.width - self.height : 0
}) { [unowned self] (_) in
self.isEnabled = true
}
customImageView.startAnimating()
flag = !flag
}
渐变色出现
最后一步,需要实现背景的渐变色跟着表情的移动一起出现。这时候可以通过一个大小跟父控件一样的白色view实现,点击时候x坐标跟表情同步。
结合帧动画
基本效果已经实现了,剩下的就是设置边框、阴影和一些细节上的调整。
Demo地址: https://github.com/JasonXJKJ/DynamicSwitch