When presenting SFSafariViewController, the view controller appears but does not seem to load the URL.
The same code, works as expected on iOS9.
if let myurl = NSURL(string: "http://www.apple.com") {
if #available(iOS 9.0, *) {
let sfVc = SFSafariViewController(URL: myurl)
vc.presentViewController(sfVc, animated:true, completion:nil)
}
}
Anyone encountered this?