I have a parent UIView with a number of subviews. Periodically I need to remove a subview and completely remove it from the system. What is the correct way to do this? I tried this:
UIView *v = [self.containerView viewWithTag:[n integerValue]];
[v removeFromSuperview];
And got bizarre result. Previously present UIViews dissapearred as well. Huh?
I could really use some expert assistance here.
Cheers, Doug