You can place two UIView variables in the header file and hide/show one of them or you can make another layer over the existing view like this:
-(IBAction)changeView {
UIView *view = [[UIView alloc] initWithNibName:@"letMeSeeThis" bundle:nil];
[self.view addSubview:view];
}