From 91b84579e8a85d2cf1b84420301c42c74c340473 Mon Sep 17 00:00:00 2001 From: bwin Date: Tue, 27 May 2014 16:23:23 +0200 Subject: [PATCH] CB-6769 ios: Fix statusbar color reset wasn't working on iOS7+ close #45 --- src/ios/CDVInAppBrowser.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ios/CDVInAppBrowser.m b/src/ios/CDVInAppBrowser.m index 059fcde..4169b6e 100644 --- a/src/ios/CDVInAppBrowser.m +++ b/src/ios/CDVInAppBrowser.m @@ -440,11 +440,11 @@ // Also - this is required for the PDF/User-Agent bug work-around. self.inAppBrowserViewController = nil; - _previousStatusBarStyle = -1; - if (IsAtLeastiOSVersion(@"7.0")) { [[UIApplication sharedApplication] setStatusBarStyle:_previousStatusBarStyle]; } + + _previousStatusBarStyle = -1; // this value was reset before reapplying it. caused statusbar to stay black on ios7 } @end