Skip to content

Instantly share code, notes, and snippets.

@rchatham
Last active December 6, 2016 02:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rchatham/ed620ab0136ce8ce45e5ae7ee6837abc to your computer and use it in GitHub Desktop.
Save rchatham/ed620ab0136ce8ce45e5ae7ee6837abc to your computer and use it in GitHub Desktop.
Performing Queued animations
func perform() {
guard let animation = animations.dequeue else { return }
UIView.animate(withDuration: animation.0, animations: animation.1) { success in
perform()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment