In my app I have one .xib file with three Window
s. I'm not using Storyboard.
To change the view between Window
s when pressing a button, I used this code:
-(IBAction) SwitchView1 {
[window setHidden:NO];
[window1 setHidden:YES];
[window2 setHidden:YES];
}
However I'm having some problems. Is there an alternative for my case?
Thank you in advance.