When my app gets back to it's root controller, in the ViewDidAppear I need to remove all subviews.
How is this done?
|
|
|
Edit: With thanks to cocoafan: This situation is muddled up by the fact that
For
Thank you to Tommy for pointing out that Please see this SO question for more details. Note: Using either of these two methods will remove every view that your main view contains and release them, if they are not retained elsewhere. From Apple's documentation on removeFromSuperview:
|
|||||||||||||||||||
|
|
Get all the subviews from your root controller and send each a removeFromSuperview:
|
|||||||
|
|
|
if you want to remove all the subviews on your UIView (here yourview), then write this code below at your button click..
|
|||||||||
|