1. 程式人生 > >IOS UIWebView不能載入網頁的解決方法

IOS UIWebView不能載入網頁的解決方法

App 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 beta中,蘋果將原http協議改成了https協議,使用 TLS1.2 SSL加密請求資料。

解決方法:

在info.plist 加入key

<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>