Skip to content

Instantly share code, notes, and snippets.

@ivangodfather
Created July 17, 2015 14:57
Show Gist options
  • Select an option

  • Save ivangodfather/ed42d6494cc934df454f to your computer and use it in GitHub Desktop.

Select an option

Save ivangodfather/ed42d6494cc934df454f to your computer and use it in GitHub Desktop.
UIView.beginAnimations(nil, context: nil)
UIView.setAnimationDuration(1)
UIView.setAnimationCurve(UIViewAnimationCurve.EaseIn)
let radians = CGFloat(180 * M_PI / 180)
arrowImageView.transform = CGAffineTransformMakeRotation(radians)
UIView.commitAnimations()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment