Skip to content

Instantly share code, notes, and snippets.

@Krizzzn
Created September 5, 2011 20:23
Show Gist options
  • Save Krizzzn/1195836 to your computer and use it in GitHub Desktop.
Save Krizzzn/1195836 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];
@Krizzzn
Copy link
Author

Krizzzn commented Sep 5, 2011

sample, because I keep forgetting

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment