CB-12922 (ios): fix In-app browser does not cede control

This commit is contained in:
Julio César 2018-07-01 18:09:47 +02:00
parent 26cf6e488c
commit dac06aa3f3
2 changed files with 14 additions and 5 deletions

View File

@ -30,6 +30,7 @@
@class CDVInAppBrowserViewController;
@interface CDVInAppBrowser : CDVPlugin {
UIWindow * tmpWindow;
}
@property (nonatomic, retain) CDVInAppBrowserViewController* inAppBrowserViewController;

View File

@ -239,8 +239,10 @@
// Run later to avoid the "took a long time" log message.
dispatch_async(dispatch_get_main_queue(), ^{
if (weakSelf.inAppBrowserViewController != nil) {
CGRect frame = [[UIScreen mainScreen] bounds];
UIWindow *tmpWindow = [[UIWindow alloc] initWithFrame:frame];
if (!tmpWindow) {
CGRect frame = [[UIScreen mainScreen] bounds];
tmpWindow = [[UIWindow alloc] initWithFrame:frame];
}
UIViewController *tmpController = [[UIViewController alloc] init];
[tmpWindow setRootViewController:tmpController];
[tmpWindow setWindowLevel:UIWindowLevelNormal];
@ -270,7 +272,9 @@
dispatch_async(dispatch_get_main_queue(), ^{
if (self.inAppBrowserViewController != nil) {
_previousStatusBarStyle = -1;
[self.inAppBrowserViewController.presentingViewController dismissViewControllerAnimated:YES completion:nil];
[self.inAppBrowserViewController.presentingViewController dismissViewControllerAnimated:YES completion:^{
[[[[UIApplication sharedApplication] delegate] window] makeKeyAndVisible];
}];
}
});
}
@ -835,9 +839,13 @@
// Run later to avoid the "took a long time" log message.
dispatch_async(dispatch_get_main_queue(), ^{
if ([weakSelf respondsToSelector:@selector(presentingViewController)]) {
[[weakSelf presentingViewController] dismissViewControllerAnimated:YES completion:nil];
[[weakSelf presentingViewController] dismissViewControllerAnimated:YES completion:^{
[[[[UIApplication sharedApplication] delegate] window] makeKeyAndVisible];
}];
} else {
[[weakSelf parentViewController] dismissViewControllerAnimated:YES completion:nil];
[[weakSelf parentViewController] dismissViewControllerAnimated:YES completion:^{
[[[[UIApplication sharedApplication] delegate] window] makeKeyAndVisible];
}];
}
});
}