更新到新發布的Xcode 7版本後,我遇到了這個問題。明文HTTP被阻止
由於App Transport Security不安全,App Transport Security阻止了明文HTTP(http://)資源加載。臨時例外可以通過您的應用程序的Info.plist文件進行配置。 gete由於App Transport安全策略要求使用安全連接,因此無法加載資源。
我做了一些搜索,我發現解決方案,說這些行添加到我的項目中Info.plist文件,但問題並沒有解決
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>com.thenewsapp.$(PRODUCT_NAME:rfc1034identifier)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
<key>NSExceptionDomains</key>
<dict>
<key>greenarea.com</key>
<dict>
<key>NSIncludesSubdomains</key>
<true/>
<key>NSTemporaryExceptionAllowsInsecureHTTPLoads</key>
<true/>
<key>NSTemporaryExceptionMinimumTLSVersion</key>
<string>TLSv1.1</string>
</dict>
</dict>
</dict>
</dict>
</plist>
任何幫助
你爲什麼不設置'NSAllowsArbitraryLoads'到TRUE;?這會讓你做所有的HTTP調用。 – execv
我做了同樣的問題仍然 –
好吧,這似乎很奇怪。我只是檢查它和它的工作。請告訴我們您的info.plist?爲了確保,您需要將'NSAppTransportSecurity'作爲字典添加到'NSAllowsArbitraryLoads'中作爲布爾值,並將其設置爲YES。 – execv