Created
April 7, 2013 21:25
-
-
Save stsievert/5332606 to your computer and use it in GitHub Desktop.
StackOverflow animation
This file contains 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
[self.view.layer removeAllAnimations]; | |
[UIView beginAnimations:nil context:NULL]; | |
[UIView setAnimationBeginsFromCurrentState:YES]; | |
[UIView setAnimationDuration:0.1]; | |
[UIView setAnimationCurve: UIViewAnimationCurveLinear]; | |
[UIView commitAnimations]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment