mobilestar2015 edited a comment on issue #314: iOS 11.4.1 XCode 10.0 after 
inAppBrowser closed, app does not respond to touch events
URL: 
https://github.com/apache/cordova-plugin-inappbrowser/issues/314#issuecomment-427980694
 
 
   I also faced this issue when I am using forked version of this plugin.
   I found the reason why the app is not responding to touch events.
   In the latest code(master branch at the moment), it creates temp UIWindow 
for the inappbrowser controller but after the controller closed, it doesn't 
remove newly created UIWindow from the superview.
   So that there is UIWindow remained over the original UIWindow.
   I resolved this issue by removing temp UIWindow on 'browerExit' method in 
CDVInAppBrowser.m
   `if (tmpWindow != nil) {
           [tmpWindow removeFromSuperview];
           tmpWindow = nil;
     }`
   Hope this helps you @datamystic 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org

Reply via email to