Skip to content

Instantly share code, notes, and snippets.

@indigoexcel
Forked from Krizzzn/gist:1195836
Created November 25, 2012 04:54
Show Gist options
  • Save indigoexcel/4142443 to your computer and use it in GitHub Desktop.
Save indigoexcel/4142443 to your computer and use it in GitHub Desktop.
Objective-C: Animation Block in Cocoa Touch
[UIView animateWithDuration: 1.0
delay: 0.0
options: UIViewAnimationOptionCurveEaseIn
animations:^{
self.view.alpha = 0.0;
drawingVC.view.alpha = 0.0;
drawingVC.view.frame = CGRectMake(400, 400, 400, 400);
}
completion:nil];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment