AISpring 1.0.4

AISpring 1.0.4

TestsTested
LangLanguage SwiftSwift
License MIT
ReleasedLast Release Sep 2015
SPMSupports SPM

Maintained by nicolas tinkl.



AISpring 1.0.4

  • By
  • nicolastinkl

AISpring

A library to simplify iOS animations in Swift

Installation

Drop in the Spring folder to your Xcode project.

Or via CocoaPods:

use_frameworks!
pod 'AISpring', '~> 1.0.2'

Usage with Storyboard

In Identity Inspector, connect the UIView to SpringView Class and set the animation properties in Attribute Inspector.

Usage with Code

layer.animation = "squeezeDown"
layer.animate()

Demo The Animations

Chaining Animations

layer.y = -50
animateToNext {
  layer.animation = "fall"
  layer.animateTo()
}

CococaPods