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

在文件开始实现  allowsAnyHTTPSCertificateForHost 方法

 

@implementation NSURLRequest (NSURLRequestWithIgnoreSSL)

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

@end


 

 

posted @ 2013-07-27 20:16  坚固66  阅读(174)  评论(0编辑  收藏  举报