I've found the answer to my own question!
Here's the code for my problem:
-(void)viewDidLoad {
if(UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone) {
CGSize result = [[UIScreen mainScreen] bounds].size;
if(result.height == 480){}
if(result.height == 568){[self performSelector:@selector(inch4) withObject:nil afterDelay:0];}}}
-(void)inch4 {
UIStoryboard *storyBoard;
storyBoard = [UIStoryboard storyboardWithName:@"iPhone4inch" bundle:nil];
UINavigationController *init4inchViewController = [storyBoard instantiateViewControllerWithIdentifier:@"MainMenu4inch"];
[self presentModalViewController:init4inchViewController animated:NO];
}
here's the code to switch storyboard files:
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"storyboard2" bundle:nil];
[self presentModalViewController:[storyboard instantiateViewControllerWithIdentifier:@"storyboard2initialviewcontroller"] animated:NO];