Carregar Storyboard diferente para iPhone 5 @ app start

Eu estou usando o seguinte código no meuAppDelegate.m para detectar qual dispositivo o usuário está usando:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{

    if(UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone)
    {
        CGSize result = [[UIScreen mainScreen] bounds].size;
        if(result.height == 480)
        {
            NSLog(@"iPhone 3,5 Inch");

            [UIStoryboard storyboardWithName:@"MainStoryboard_iPhone" bundle:nil];



        }
        if(result.height == 568)
        {
            NSLog(@"iPhone 4 Inch");
            [UIStoryboard storyboardWithName:@"iPhone5-storyboard" bundle:nil];
        }
    }

    return YES;
}

Mas quando eu construo o App o NSLog é mostrado, mas nenhum Storyboard está chegando ...

O campo Mainboard principal nas informações de implantação está vazio para que o código decida o que carregar ...

Alguém pode me ajudar?

Thx e melhores cumprimentos da Alemanha

Laurenz :)

questionAnswers(1)

yourAnswerToTheQuestion