I was thinking maybe something like this might work:
for (UIView* b in self.view.subviews)
{
[b removeFromSuperview];
}
I want to remove every kind of subview. UIImages, Buttons, Textfields etc.
-Code
|
I was thinking maybe something like this might work:
I want to remove every kind of subview. UIImages, Buttons, Textfields etc. -Code |
||||
It's identical to your variant, but slightly shorter. |
|||
bwould be promptly removed from thesubviewsarray, causing a mutation within a fast enumeration loop, which is forbidden. – Mazyod Aug 9 '12 at 18:02copyspecifier means that it makes a copy when set; nothing is specified about getting. It is quite likely that a copy is returned, but that's not part of the property definition. – Josh Caswell Aug 9 '12 at 18:43