Skip to content

Instantly share code, notes, and snippets.

@sbrocket
Created May 16, 2011 22:07
Show Gist options
  • Select an option

  • Save sbrocket/975486 to your computer and use it in GitHub Desktop.

Select an option

Save sbrocket/975486 to your computer and use it in GitHub Desktop.
[[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