Hi, how can I display touches in a SFSafariViewController that is presented programmatically from another view controller? Here is my current code:
let svc = SFSafariViewController(url: NSURL(string: self.urlString)! as URL)
svc.delegate = self
present(svc, animated: true, completion: {
Visualizer.start()
})
I also tried to start the Visualizer within a SFSafariViewControllerDelegate event handler:
func safariViewController(_ controller: SFSafariViewController, didCompleteInitialLoad didLoadSuccessfully: Bool) {
Visualizer.start()
}
… But in any case, touches aren't displayed. Any idea why? Thanks!
Hi, how can I display touches in a SFSafariViewController that is presented programmatically from another view controller? Here is my current code:
I also tried to start the Visualizer within a SFSafariViewControllerDelegate event handler:
… But in any case, touches aren't displayed. Any idea why? Thanks!