I have a very sneaky problem. I'm using Cordova to embeded my web-app onto iOS app.
But we have external URL and with our technique, it's really painfull to open external URL. And Cordova plugins like InAppBrowser does not work (because our app is already use an inapp browser).
Goal : we want to open an external URL, from a HTML page, to the Safari navigator of the device.
Maybe with Javascript ? I thought about something like :
UIApplication.shared.open(url, options: [:], completionHandler: nil)
So maybe, we can add in MainViewController
a command triggered by an HTML button who use Javascript to open the URL in Safari ?
Anyone have an idea ? Many thanks