Safari ViewController启用了地址栏

时间:2017-01-10 08:58:08

标签: ios swift xcode button sfsafariviewcontroller

我正在使用Safari ViewController并禁用地址栏。如何启用它以便用户可以输入其他URL?

enter image description here

以下是我正在使用的代码

class ViewController: UIViewController, SFSafariViewControllerDelegate {

    override func viewDidLoad() {
        super.viewDidLoad()           
    }

    @IBAction func showSafariVC(_ sender: AnyObject) {
        let svc = SFSafariViewController(url: NSURL(string: "http://www.google.com") as! URL)
        svc.delegate = self
        present(svc, animated: true, completion: nil)
    }
}

1 个答案:

答案 0 :(得分:3)

无法按照here所述编辑SFSafariViewController的网址。

在Apple developer site中,他们也提到了这一点:

  

带有安全指示符和Reader的只读地址字段   按钮

希望这有帮助!