Skip to content

Instantly share code, notes, and snippets.

@dirkeinecke
Last active November 10, 2017 07:56
Show Gist options
  • Save dirkeinecke/2a18ac991a3becb87910 to your computer and use it in GitHub Desktop.
Save dirkeinecke/2a18ac991a3becb87910 to your computer and use it in GitHub Desktop.
Das folgende Beispiel zeigt, wie man unter iOS (Objective-C) alle Subviews einer View entfernt.
for (UIView *view in myView.subviews) {
[view removeFromSuperview];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment