Created
July 17, 2015 14:57
-
-
Save ivangodfather/ed42d6494cc934df454f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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