在iOS9中,苹果将原http协议改成了https协议,使用 TLS1.2 SSL加密请求数据。如何解决报错

今天将Xcode升级至Xcode7,运行时发现有报错~

控制台报错如下:

Application Transport Security has blocked a cleartext HTTP (http://) resource load since it is insecure. Temporary exceptions can be configured via your app's Info.plist file.

在iOS9中,苹果将原http协议改成了https协议,使用 TLS1.2 SSL加密请求数据。

解决办法:在Info.plist中添加字段如下

NSAppTransportSecurity Dictionary类型

在NSAppTransportSecutity 添加一Boolean值 NSAllowsArbitraryLoads 为YES


 OK啦, 报错没有啦。

你可能感兴趣的:(ios开发)