今天升級 Xcode 7.0 bata
發現網絡訪問失敗。
輸出錯誤信息
The resource could not be loaded because the App Transport Security policy requires the use of a secure connection.
Google后查證,iOS9引入了新特性 App Transport Security (ATS)
。詳情: App Transport Security (ATS)
新特性要求App內訪問的網絡必須使用 HTTPS
協議。
但是現在公司的項目使用的是 HTTP
協議,使用私有加密方式保證數據安全。現在也不能馬上改成 HTTPS
協議傳輸。
最終找到以下解決辦法:
在Info.plist中添加 NSAppTransportSecurity
類型 Dictionary
。
在 NSAppTransportSecurity
下添加 NSAllowsArbitraryLoads
類型Boolean
,值設為 YES