自从更新到解析器9beta4后,我们的应用程序似乎不能再访问iOS数据库中的数据--这是一个已知的问题吗?其他人正在经历的事情?
有什么解决方案吗?
谢谢!
发布于 2015-09-11 18:31:31
尝试在*.plist文件中添加此域例外:
<key>NSAppTransportSecurity</key>
<dict>
<key>NSExceptionDomains</key>
<dict>
<key>files.parsetfss.com</key>
<dict>
<key>NSIncludesSubdomains</key>
<true/>
<key>NSTemporaryExceptionAllowsInsecureHTTPLoads</key>
<true/>
<key>NSTemporaryExceptionMinimumTLSVersion</key>
<string>TLSv1.1</string>
</dict>
</dict>
</dict>https://stackoverflow.com/questions/31564531
复制相似问题