From 694ffb52ebf4e7887edaeb798de68f19f12e88d4 Mon Sep 17 00:00:00 2001 From: zher52 Date: Thu, 17 Sep 2020 16:36:16 +0800 Subject: [PATCH] =?UTF-8?q?fix=20=E4=BF=AE=E5=A4=8Dios=20toolbar=20?= =?UTF-8?q?=E5=AE=8C=E6=88=90=E6=8C=89=E9=92=AE=E5=A4=B1=E6=95=88=E7=9A=84?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/ios/CDVWKInAppBrowser.h | 3 ++- src/ios/CDVWKInAppBrowser.m | 21 +++++++++++++-------- 2 files changed, 15 insertions(+), 9 deletions(-) diff --git a/src/ios/CDVWKInAppBrowser.h b/src/ios/CDVWKInAppBrowser.h index 500f7cf..9d653bb 100644 --- a/src/ios/CDVWKInAppBrowser.h +++ b/src/ios/CDVWKInAppBrowser.h @@ -56,6 +56,7 @@ NSDictionary *_settings; } +@property (nonatomic, strong) IBOutlet UIViewController* parent; @property (nonatomic, strong) IBOutlet WKWebView* webView; @property (nonatomic, strong) IBOutlet WKWebViewConfiguration* configuration; @property (nonatomic, strong) IBOutlet UIBarButtonItem* closeButton; @@ -76,6 +77,6 @@ - (void)showToolBar:(BOOL)show : (NSString *) toolbarPosition; - (void)setCloseButtonTitle:(NSString*)title : (NSString*) colorString : (int) buttonIndex; -- (id)initWithBrowserOptions: (CDVInAppBrowserOptions*) browserOptions andSettings:(NSDictionary*) settings; +- (id)initWithBrowserOptions: (CDVInAppBrowserOptions*) browserOptions andSettings:(NSDictionary*) settings andParent:(UIViewController*) parent; @end diff --git a/src/ios/CDVWKInAppBrowser.m b/src/ios/CDVWKInAppBrowser.m index cb1ec50..edb93a3 100644 --- a/src/ios/CDVWKInAppBrowser.m +++ b/src/ios/CDVWKInAppBrowser.m @@ -74,11 +74,7 @@ static CDVWKInAppBrowser* instance = nil; NSLog(@"IAB.close() called but it was already closed."); return; } - UIView *lastView; - for(UIView *subview in [self.viewController.view subviews]) { - lastView = subview; - } - [lastView removeFromSuperview]; + // Things are cleaned up in browserExit. [self.inAppBrowserViewController close]; } @@ -203,7 +199,7 @@ static CDVWKInAppBrowser* instance = nil; } if (self.inAppBrowserViewController == nil) { - self.inAppBrowserViewController = [[CDVWKInAppBrowserViewController alloc] initWithBrowserOptions: browserOptions andSettings:self.commandDelegate.settings]; + self.inAppBrowserViewController = [[CDVWKInAppBrowserViewController alloc] initWithBrowserOptions: browserOptions andSettings:self.commandDelegate.settings andParent: self.viewController]; self.inAppBrowserViewController.navigationDelegate = self; if ([self.viewController conformsToProtocol:@protocol(CDVScreenOrientationDelegate)]) { @@ -716,7 +712,7 @@ static CDVWKInAppBrowser* instance = nil; BOOL viewRenderedAtLeastOnce = FALSE; BOOL isExiting = FALSE; -- (id)initWithBrowserOptions: (CDVInAppBrowserOptions*) browserOptions andSettings:(NSDictionary *)settings +- (id)initWithBrowserOptions: (CDVInAppBrowserOptions*) browserOptions andSettings:(NSDictionary *)settings andParent:(UIViewController*) parent { self = [super init]; if (self != nil) { @@ -724,7 +720,7 @@ BOOL isExiting = FALSE; _settings = settings; self.webViewUIDelegate = [[CDVWKInAppBrowserUIDelegate alloc] initWithTitle:[[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleDisplayName"]]; [self.webViewUIDelegate setViewController:self]; - + self.parent = parent; [self createViews]; } @@ -1079,14 +1075,23 @@ BOOL isExiting = FALSE; return NO; } +- (void)newClose{ + +} - (void)close { self.currentURL = nil; __weak UIViewController* weakSelf = self; + __weak UIViewController* weakParentSelf = self.parent; // Run later to avoid the "took a long time" log message. dispatch_async(dispatch_get_main_queue(), ^{ + UIView *lastView; + for(UIView *subview in [weakParentSelf.view subviews]) { + lastView = subview; + } + [lastView removeFromSuperview]; isExiting = TRUE; if ([weakSelf respondsToSelector:@selector(presentingViewController)]) { [[weakSelf presentingViewController] dismissViewControllerAnimated:YES completion:nil];