By specifying NSAllowsArbitraryLoadsInWebContent, you are overriding NSAllowsArbitraryLoads on iOS 10.

In iOS 10 and later, and macOS 10.12 and later, the value of [the NSAllowsArbitraryLoads] key is ignored if any of the following keys are present in your app’s Info.plist file:

  • NSAllowsArbitraryLoadsForMedia
  • NSAllowsArbitraryLoadsInWebContent
  • NSAllowsLocalNetworking

Source: App Transport Security dictionary primary keys (Apple)

Additionally, the NSExceptionDomain dictionaries you have provided don't seem to match the current documented format. Specifically, the keys don't match:

  • NSTemporaryExceptionAllowsInsecureHTTPLoads should be NSExceptionAllowsInsecureHTTPLoads

  • NSTemporaryExceptionMinimumTLSVersion should be NSExceptionMinimumTLSVersion

  • NSTemporaryExceptionRequiresForwardSecrecy should be NSExceptionRequiresForwardSecrecy

https://stackoverflow.com/questions/40509013/app-transport-security-allow-arbitrary-load-not-working-after-upgrade-to-ios-10/40623879#40623879

最新文章

  1. Verilog学习笔记简单功能实现(二)...............全加器
  2. SelectionSort,选择排序
  3. js 四舍五入
  4. SQLServer 数据修复命令DBCC一览
  5. HTML5之sessionStorage
  6. eclipse文本域内只能输入繁体中文
  7. POJ3630Phone List(字典树)
  8. linux系统基础(一)
  9. 给Array添加删除重复元素函数
  10. Uber司机手机终端问答篇
  11. C++设计模式-Iterator迭代器模式
  12. OpenGL ES着色器语言之语句和结构体(官方文档第六章)内建变量(官方文档第七、八章)
  13. mysql flush操作
  14. (4)Maven快速入门_4在Spring+SpringMVC+MyBatis+Oracle+Maven框架整合运行在Tomcat8中
  15. python基础类型—数字(Number)
  16. 富文本编辑器summerNote
  17. ScrollView不能包含多个子项,ScrollView can host only one direct child
  18. Zookeeper--0200--安装与集群搭建、常用命令、客户端工具
  19. duilib 实现 XML重用(item完全重合的CList)
  20. lucene源码分析(1)基本要素

热门文章

  1. 贪吃蛇 c++ ncurses
  2. URAL 题目1553. Caves and Tunnels(Link Cut Tree 改动点权,求两点之间最大)
  3. Vue 实现原理
  4. pat(A) 1063. Set Similarity(STL)
  5. height not divisible by 2
  6. exception log
  7. android 6.0编译时出现ERROR:Security problem ,see jack server log【转】
  8. flask-migrate 数据迁移
  9. 第八周 Leetcode 44. Wildcard Matching 水题 (HARD)
  10. bzoj 1647: [Usaco2007 Open]Fliptile 翻格子游戏【dfs】