Skip to content

Instantly share code, notes, and snippets.

View indigoexcel's full-sized avatar

Phil Wright indigoexcel

View GitHub Profile
@indigoexcel
indigoexcel / gist:4142443
Created November 25, 2012 04:54 — forked from Krizzzn/gist:1195836
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];