Created
March 29, 2016 23:51
-
-
Save pigfly/5dbeb12d8fdb06e8207bea5247637a0f to your computer and use it in GitHub Desktop.
Gist for my post core animation explained
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
demoView.frame = CGRectMake(0, 0, 100, 100) | |
demoView.backgroundColor = UIColor.purpleColor() | |
self.backgroundColor = UIColor.greenColor() | |
UIView.animateWithDuration(5.0) { () -> Void in | |
self.backgroundColor = UIColor.grayColor() | |
self.demoView.center = CGPointMake(100, 100) | |
} | |
puts("foo bar") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment