iOS9 HTTP 不能正常使用的解決辦法

今天升級Xcode 7.0發現網絡訪問失敗。
輸出錯誤信息html

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)ios

新特性要求App內訪問的網絡必須使用HTTPS協議。
可是如今公司的項目使用的是HTTP協議,使用私有加密方式保證數據安全。如今也不能立刻改爲HTTPS協議傳輸。sql

最終找到如下解決辦法:

  1. 在Info.plist中添加NSAppTransportSecurity類型Dictionary安全

  2. NSAppTransportSecurity下添加NSAllowsArbitraryLoads類型Boolean,值設爲YES網絡

相關文章
相關標籤/搜索