ios9 https问题(2017.1.1号你就不用设置了,必须使用HTTPS不然不让上架)

1. 一般网络请求需要加入

非https 认证





    NSAllowsArbitraryLoads
    


2.UIWebView加载HTTPS报错

直接上这段代码 可以加载appdelegate底部

@implementation NSURLRequest(DataController)

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

@end

你可能感兴趣的:(ios9 https问题(2017.1.1号你就不用设置了,必须使用HTTPS不然不让上架))