Skip to content

Instantly share code, notes, and snippets.

@pigfly
Created March 30, 2016 05:49
Show Gist options
  • Save pigfly/3407e38bd36b9821e4d19a951150eebe to your computer and use it in GitHub Desktop.
Save pigfly/3407e38bd36b9821e4d19a951150eebe to your computer and use it in GitHub Desktop.
demoView.frame = CGRectMake(0, 0, 100, 100)
demoView.backgroundColor = UIColor.purpleColor()
self.backgroundColor = UIColor.greenColor()
UIView.animateWithDuration(3, delay: 0, options: [.CurveLinear, .AllowUserInteraction],
animations: { () -> Void in
self.backgroundColor = UIColor.grayColor()
self.demoView.center = CGPointMake(200, 200)
}) { (Bool) -> Void in
self.demoView.center = CGPointMake(50, 50)
}
puts("foo bar")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment