From c6ffd69e9ce4c5aeecf4d292c4062d4596534bd7 Mon Sep 17 00:00:00 2001 From: Reid Beels Date: Wed, 18 Jan 2017 16:33:27 -0800 Subject: [PATCH] CB-12366: (ios) Reduce tmpWindow level to prevent overlapping statusbar This closes #209 --- src/ios/CDVInAppBrowser.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ios/CDVInAppBrowser.m b/src/ios/CDVInAppBrowser.m index e8aced7..c9ebad2 100644 --- a/src/ios/CDVInAppBrowser.m +++ b/src/ios/CDVInAppBrowser.m @@ -243,7 +243,7 @@ UIWindow *tmpWindow = [[UIWindow alloc] initWithFrame:frame]; UIViewController *tmpController = [[UIViewController alloc] init]; [tmpWindow setRootViewController:tmpController]; - [tmpWindow setWindowLevel:UIWindowLevelAlert]; + [tmpWindow setWindowLevel:UIWindowLevelNormal]; [tmpWindow makeKeyAndVisible]; [tmpController presentViewController:nav animated:YES completion:nil];