Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
伙计们。我将 info.plist 设置为图片
但是,问题仍然存在:“App Transport Security 已阻止明文 HTTP (http://) 资源加载,因为它不安全。可以通过应用程序的 Info.plist 文件配置临时异常。”。我昨天更新了我的 Xcode。愿景是 7.1 。模拟器的愿景是 9.1 这里有类似的问题吗?
打开Info.plist并更改该文本,NSAllowsArbitraryLoads您的问题将得到解决。
NSAllowsArbitraryLoads
或者以Source Code模式打开Info.plist文件并替换以下行:
<key>NSAppTransportSecurity</key> <dict> <key>NSAllowsArbitraryLoads</key> <true/> </dict>