Skip to content

Releases: GSM-MSG/Anim

1.1.0

24 Jul 11:04
Compare
Choose a tag to compare

Added

일부 기본 Anim들에 AnimationOptions를 설정가능하도록 변경

Full Changelog: 1.0.0...1.1.0

Anim 1.0.0 🎉

16 Jul 05:17
Compare
Choose a tag to compare

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