- 我已經介紹了webview,但我按回來按鈕視圖控制器並沒有被解僱。
- 當我把beakpoint放在取消按鈕上時,它不會被觸發。
這裏是我的代碼:在swift3中加載webview時後退按鈕卡住了嗎?
//MARK: - View Life Cycle
override func viewDidLoad() {
super.viewDidLoad()
loadWebView()
}
//MARK: - Methods
func loadWebView() {
let url = URL(string: "http://www.lipsum.com/")
//(URL(string: Constant.MedataApi.BaseUrl)?.appendingPathComponent(Constant.termsAndConditions))!
let request = NSURLRequest.init(url: url! as URL)
webView.loadRequest(request as URLRequest)
//webView.layer.borderWidth = 1.0
//webView.layer.borderColor = UIColor.red.cgColor
}
//MARK: - IBActions() -
@IBAction func cancelButtonClicked(_ sender: Any) {
self.dismiss(animated: true, completion: nil)
}
在您發表評論'loadWebView()''中viewDidLoad方法()',然後按返回鍵會發生什麼,還是它的工作原理? –
你使用'push'或'modal'來轉到'webView'控制器嗎? –
如何異步加載網址? –