iOS 9 使用http请求 所需的配置

iOS9引入了新特性App Transport Security (ATS)。

新特性要求App内访问的网络必须使用HTTPS协议。

但是现在很多项目使用的是HTTP协议,现在也不能马上改成HTTPS协议传输。

所以要设置一下

Xcode7

在Info.plist中add Row添加NSAppTransportSecurity类型Dictionary。

在NSAppTransportSecurity下添加NSAllowsArbitraryLoads类型Boolean,值设为YES


*Xcode7.1

在Xcode7.1中苹果更改了这项设定的名称

在App Transport Security Settings下添加Allows Arbitrary Loads类型Boolean,值设为YES

当xcode为7.1以上  填写xocde7上的关键字 会自动修改为  下图

iOS 9 使用http请求 所需的配置_第1张图片

你可能感兴趣的:(iOS 9 使用http请求 所需的配置)