swift WKWebView 某些网址无法加载

在使用wkwebVIew的过程中 有事候会出现一些包含中文的网址没法加载 ,调用 stringByAddingPercentEncodingWithAllowedCharacters的方法就可以了额 

示例:

 let newUrl = url .stringByAddingPercentEncodingWithAllowedCharacters(NSCharacterSet.URLQueryAllowedCharacterSet())

    

        if let nsurl = NSURL(string: newUrl!) {

            

            webView?.loadRequest(NSURLRequest(URL: nsurl))

        }else {

            didLoadFailed("url不合法")

        }

        


你可能感兴趣的:(学习方法,心得体会,swift)