Hi,
we are using a QLPreviewController in our App to preview PDF documents.
For some reason the Links embedded in the PDF document are not opened in safari, even though the AlertView "Leave APPNAME and open this link?" is shown and confirmed.
In our logs I see the following
+[LSApplicationProxy applicationProxyFor*] is not a supported method for getting the LSApplicationProxy for the current process, use +[LSBundleProxy bundleProxyForCurrentProcess] instead.
I also added the QLPreviewControllerDelegate to handle the callback shouldOpenUrl - however this callback is never fired
func previewController(_ controller: QLPreviewController, shouldOpen url: URL, for item: QLPreviewItem) -> Bool {
return true;
}