It is possible! I searched for a long time and found a solution. I do this in my main view controller, the Table View Controller. If I select a cell in my table view, the SafariViewController opens in the detail view.
let safariViewController = SFSafariViewController(URL: NSURL(String: "http://google.com")) self.showDetailViewController(safariViewController, sender: nil)
Result: Safari View Manager Information
This is due to some problems.
You must use iOS 9.1 or more to avoid this user interface error : UI Error Safari View Controller
You should hide the navigation bar if you want to see the standard Safari view controller panel (with URL, ...)
source share