Swift2.x UIWebView获取当前网页的Url和title

前端之家收集整理的这篇文章主要介绍了Swift2.x UIWebView获取当前网页的Url和title前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

UIWebView代理方法

func webView(webView: UIWebView,shouldStartLoadWithRequest request: NSURLRequest,navigationType: UIWebViewNavigationType) -> Bool

中可以获取

var url:String = request.URL!.absoluteString

nowWebUrl = url

nowWebTitle = ziXunWebView.stringByEvaluatingJavaScriptFromString("document.title")

原文链接:https://www.f2er.com/swift/322821.html

猜你在找的Swift相关文章