From acf88dbb79db3f9353c04feea1f5cfadaa2f77c1 Mon Sep 17 00:00:00 2001 From: Adam Wilson Date: Thu, 4 Jan 2018 14:50:29 +0000 Subject: [PATCH] Add iPad landscape launch image --- ios/RCCManager.m | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ios/RCCManager.m b/ios/RCCManager.m index d49b0448dd2..bd9e7e4e57a 100755 --- a/ios/RCCManager.m +++ b/ios/RCCManager.m @@ -183,7 +183,7 @@ -(void)showSplashScreen } } else - {//load the splash from the DEfault image or from LaunchImage in the xcassets + {//load the splash from the Default image or from LaunchImage in the xcassets CGFloat screenHeight = screenBounds.size.height; NSString* imageName = @"Default"; @@ -208,6 +208,8 @@ -(void)showSplashScreen imageName = [imageName stringByAppendingString:@"-800-667h"]; else if (screenHeight == 736) imageName = [imageName stringByAppendingString:@"-800-Portrait-736h"]; + else if (screenHeight == 768) + imageName = [imageName stringByAppendingString:@"-Landscape"]; else if (screenHeight == 812) imageName = [imageName stringByAppendingString:@"-1100-Portrait-2436h"]; else if (screenHeight == 1024)