我想在用户上传内容后到达Dropbox网站的"谢谢"页面时自动关闭SFSafariViewController; 它需要自动解雇.我怎样才能做到这一点?
这是我到目前为止:
@IBAction func Singles5(_ sender: Any) {
let safariVC = SFSafariViewController(url: NSURL(string: "https://www.dropbox/Upload")! as URL)
self.present(safariVC, animated: true, completion: nil)
safariVC.delegate = self
}
Run Code Online (Sandbox Code Playgroud)