In code
UIView has a hidden property. You can switch it to hide / show how you want in the code, for example:
myView.hidden = YES; // YES/NO
You will want to do this somewhere after -viewDidLoad
Interface constructor
In the inspector, once you have selected the view you want to hide, you should see something like this (look in the View> Drawing Options below).
This is a hidden property that you want to check here ... You will want to log out to your code in order to subsequently display it ...

Daniel
source share