Cannot bring the Safari browser to the foreground from an iOS application while other applications can be opened the same way.
STEPS TO REPRODUCE
After executing the following code, the browser is not opened:
if let url = URL(string: "com-apple-mobilesafari-tab://"), UIApplication.shared.canOpenURL(url) {
UIApplication.shared.open(url, options: [: ], completionHandler: nil)
}