美文网首页
关于WKWebView加载HTTPS网页不显示的解决方案

关于WKWebView加载HTTPS网页不显示的解决方案

作者: 你相信奇迹么 | 来源:发表于2017-03-01 08:41 被阅读0次

大家是否在平时开发中用WKWebView加载HTTPS网页加载不出来?如果来请仔细阅读这篇文章,它会告诉你解决放啊!

遵守WKWebView的二个代理分别是

WKNavigationDelegate,WKUIDelegate

然后在其代理方法

- (void)webView:(WKWebView*)webView didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge*)challenge completionHandler:(void(^)(NSURLSessionAuthChallengeDispositiondisposition,NSURLCredential*credential))completionHandler

里面写上if([challenge.protectionSpace.authenticationMethodisEqualToString:NSURLAuthenticationMethodServerTrust]) {

if([challengepreviousFailureCount] ==0){

NSURLCredential*credential = [NSURLCredentialcredentialForTrust:challenge.protectionSpace.serverTrust];

completionHandler(NSURLSessionAuthChallengeUseCredential, credential);

}else{

completionHandler(NSURLSessionAuthChallengeCancelAuthenticationChallenge,nil);

}

}else{

completionHandler(NSURLSessionAuthChallengeCancelAuthenticationChallenge,nil);

}

这些代码就可以加载HTTPS网页了!

相关文章

网友评论

      本文标题:关于WKWebView加载HTTPS网页不显示的解决方案

      本文链接:https://www.haomeiwen.com/subject/ttfqgttx.html