iOS app分发

2018-12-17  本文已影响169人  突刺刺

一.需求

二.原理

三.准备工作

四.实现

背景:在本机搭建https服务器的企业账号签名的应用分发

五.问题及解决

六.WKwebView访问https不成功

- (void)webView:(WKWebView *)webView didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge completionHandler:(void (^)(NSURLSessionAuthChallengeDisposition disposition, NSURLCredential * _Nullable credential))completionHandler
{  
if ([challenge.protectionSpace.authenticationMethod isEqualToString:NSURLAuthenticationMethodServerTrust])
 {  
NSURLCredential *card = [[NSURLCredential alloc]initWithTrust:challenge.protectionSpace.serverTrust];  completionHandler(NSURLSessionAuthChallengeUseCredential,card); 
 }
}
上一篇下一篇

猜你喜欢

热点阅读