LaunchScreen.xib orientation

Maybe this is a silly quesiton but I'm trying to force the orientation of my LaunchScreen


My app works in Portrait (some of the viewcontrollers) and Landscape the rest of them.


But my LaunchScreen should be only in Landscape, I tried to force it addidng the key to info.plist:

Landscape (right home button)


But it's stils showing the LaunchScreen in Portrait when the iPad is in Portrait.

Replies

I fix the issue, leaving the orientation I want for the project file ( in this case just landcape)


https://postimg.org/image/a7zo8uv8n/


And adding the orientation support in the AppDelegate.m


- (UIInterfaceOrientationMask)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window {
    return UIInterfaceOrientationMaskAll;
}