Post

Replies

Boosts

Views

Activity

Reply to SFSafariViewController as childViewController overlapping view problem
I had exactly the same problem. The issue is that you are pushing the SFSafariViewController to a UINavigationController. Instead present it (and it will also be pushed on the NavigationController, as you want to have it) but without the overlay issue so that the Done button is not covered anymore! let vc = SFSafariViewController(url: URL(string: "anyURL")!) self.present(vc, animated: true) // will push on a navigationController (when self is already presented by a NavigationController(
Oct ’20