寫了個demo,模擬瀏覽器加載網站地址,一直報錯,網上找了解決辦法解決了(http://blog.csdn.net/qq417431233/article/details/50734451)html
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.ios
https://developer.apple.com/library/prerelease/ios/releasenotes/General/WhatsNewIniOS/Articles/iOS9.html#//apple_ref/doc/uid/TP40016198-DontLinkElementID_13
在iOS9 beta1中,蘋果將原http協議改爲了https協議,使用 TLS1.2 SSL加密請求數據。瀏覽器
解決辦法:在info.plist中添加app
<key>NSAppTransportSecurity</key> <dict> <key>NSAllowsArbitraryLoads</key> <true/> </dict>
附上搞定的demo圖網站