Skip to content

Instantly share code, notes, and snippets.

@hachinobu
Last active August 29, 2015 14:08
Show Gist options
  • Save hachinobu/29bc73df495617a07c3a to your computer and use it in GitHub Desktop.
Save hachinobu/29bc73df495617a07c3a to your computer and use it in GitHub Desktop.
makeObjectsPerformSelector
for (UIView *view in [self.view subviews]) {
[view removeFromSuperview];
}
[[self.view subviews] makeObjectsPerformSelector:@selector(removeFromSuperview)];
は同じ意味になる
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment