In your application you should find the following code:
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MyStoryboard" bundle:nil]; self.window.rootViewController = [storyboard instantiateInitialViewController]; [self.window makeKeyAndVisible];
Here you can add some code to choose among several storyboards that you have depending on the version of iOS :
UIStoryboard *storyboard; NSString *currSysVer = [[UIDevice currentDevice] systemVersion]; if (...) { storyboard = [UIStoryboard storyboardWithName:@"MyStoryboard-v5" bundle:nil]; } else { storyboard = [UIStoryboard storyboardWithName:@"MyStoryboard-v6" bundle:nil]; } self.window.rootViewController = [storyboard instantiateInitialViewController]; [self.window makeKeyAndVisible];
source share