I worte this demo for learning, this demo is a clap animation can be used in many app.
- Xcode9 and later
- iOS 12.1 and later
- Swift4.0 and later
let's see what would happen when you run this simple project.
First you must develop your own clap button, and add the code in ViewController.swift
The following codes are the function when you touch the button.
@objc func likeButtonTapped(sender: UIButton) {
feedbackGenerator?.impactOccurred()
flag = !flag
if flag {
likeButton.setImage(UIImage(named: "2"), for: .normal)
playAnimation()
/**
*设定一段时间以后停止发射粒子
*/
DispatchQueue.main.asyncAfter(deadline: .now() + 0.25) { [weak self] in
self!.emitterLayer.removeFromSuperlayer()
}
} else {
likeButton.setImage(UIImage(named: "1"), for: .normal)
}
scaleLikeButton()
}
If you want to know how it was built, you can see make a simple clap demo for reference