From e401a4de0ffa50769e982494f5024b35a31a3380 Mon Sep 17 00:00:00 2001 From: Edna Morales Date: Fri, 12 Feb 2016 23:05:50 -0500 Subject: [PATCH] CB-10606 fix deprecation warning for interfaceOrientation This closes #82 --- src/ios/CDVSplashScreen.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ios/CDVSplashScreen.m b/src/ios/CDVSplashScreen.m index 110a0ca..2883201 100644 --- a/src/ios/CDVSplashScreen.m +++ b/src/ios/CDVSplashScreen.m @@ -327,7 +327,7 @@ CGRect imgBounds = (img) ? CGRectMake(0, 0, img.size.width, img.size.height) : CGRectZero; CGSize screenSize = [self.viewController.view convertRect:[UIScreen mainScreen].bounds fromView:nil].size; - UIInterfaceOrientation orientation = self.viewController.interfaceOrientation; + UIInterfaceOrientation orientation = [UIApplication sharedApplication].statusBarOrientation; CGAffineTransform imgTransform = CGAffineTransformIdentity; /* If and only if an iPhone application is landscape-only as per