Created
May 16, 2011 22:07
-
-
Save sbrocket/975486 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| [[self.scrollView subviews] enumerateObjectsUsingBlock:^(UIView *obj, NSUInteger idx, BOOL *stop) { | |
| [UIView animateWithDuration:0.25 animations:^{ | |
| obj.alpha = 0.0; | |
| } completion:^(BOOL finished) { | |
| [obj removeFromSuperview]; | |
| }]; | |
| }]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment