If you want to hide all of the 600 subviews without creating a for loop, I think that there is another simple way as well. Look at the documentation for hidden property of UIView. It says:
A hidden view disappears from its window and does not receive input events. It remains in its superview’s list of subviews, however, and participates in autoresizing as usual. Hiding a view with subviews has the effect of hiding those subviews and any view descendants they might have. This effect is implicit and does not alter the hidden state of the receiver’s descendants.
So make a UIView (let's call it containerView) and make it a subview of your mainView. Then take all of your 600 subviews and make them subviews of containerView, not your mainView. You can now hide all 600 subviews (as well as containerView) with one simple line:
mainView.containerView.hidden=YES;
Your mainView will remain visible of course.