Releases: GSM-MSG/Anim
Releases · GSM-MSG/Anim
1.1.0
Anim 1.0.0 🎉
Anim
Anim is a library that provides a convenient way to use animations in UIKit and create custom animations.
🎉
Quick Stack
import Anim
import UIKit
final class ViewController: UIViewController {
@IBOutlet weak var targetView: UIView!
@IBAction func fadeOutButtonDidTap(_ sender: Any) {
targetView.anim(anim: .fadeOut())
}
@IBAction func shake(_ sender: Any) {
targetView.anim(anim: .shake())
}
}
Full Changelog: https://github.com/GSM-MSG/Anim/commits/1.0.0