iOS9引入了新特性App Transport Security (ATS)。
新特性要求App內訪問的網絡必須使用HTTPS協議。
可是如今不少項目使用的是HTTP協議,如今也不能立刻改爲HTTPS協議傳輸。
那麼如何設置才能在iOS9中使用Http請求呢網絡
在Info.plist
中add Row添加NSAppTransportSecurity
類型Dictionary
。spa
在NSAppTransportSecurity
下添加NSAllowsArbitraryLoads
類型Boolean
,值設爲YES
code
在Xcode7.1中蘋果更改了這項設定的名稱
在App Transport Security Settings
下添加Allows Arbitrary Loads
類型Boolean
,值設爲YES
圖片