当前位置:编程学习 > wap >>

iOS UIWebView 访问https 绕过证书验证的方法

在文件开始实现  allowsAnyHTTPSCertificateForHost 方法

 
@implementation NSURLRequest (NSURLRequestWithIgnoreSSL) 
 
+ (BOOL)allowsAnyHTTPSCertificateForHost:(NSString *)host 
{ 
    return YES; 
} 
 
@end 

@implementation NSURLRequest (NSURLRequestWithIgnoreSSL)

+ (BOOL)allowsAnyHTTPSCertificateForHost:(NSString *)host
{
    return YES;
}

@end

 

补充:移动开发 , IOS ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,