So I have an app where I use for the UI a storyboard with different views. In the first view, there's an if statment when I push a button. It decides if the screen has to show the next ViewController or other. I already know how to do this with .xibs, but no with storyboards.
Here's the code that doesn't work:
.h
{
IBOutlet UIView *one;
IBOutlet UIView *two;
}
.m
-(IBAction)decideNextView:(id)sender{
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
NSString *NextView =[defaults objectForKey:@"TestDone"];
if ([NextView isEqualToString:@""]) {
self.view = one;
}else if ([NextView isEqualToString:@"Done"]) {
self.view = two;
}else {
self.view = one;
}
}
When I run the app in my iPod Touch and I push the button that performs the IBAction, I get a black screen, but any error. Please help me!

view1andview2going to take over the entire screen? If you want to take over the entire screen the best way to do it would be to make new view controllers forview1and forview2. Then you can drag out a segue and then you can call it in your conditional statement:[self performSegueWithIdentifier:sender:]. If it is just part of the screen, you might try thehiddenproperty. Likeself.view1.hidden = YES;when you load your view and then change toNOin the if/else – Mike Z May 3 '12 at 23:41