let sfViewController = SFSafariViewController(url: url)
sfViewController.delegate = self
self.ViewC!.present(sfViewController, animated: false, completion: nil)
I am opening a SFSafariViewController in my app. But for the security issue I do not want the controls given by this view. This view is giving Actions like- Done, Refresh, Share, Open in Safari.
For My purpose I just want Action- Done. Rest other actions should not be visible to user. I am supporting ios 10.0 + . Atleast that toolbar should not be there. Is it possible to do this?