iOS9 设置

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 9.0由于强制使用https 所以之前使用的 http的连接 的应用 都不可以运行了,为了解决这个问题
所以在项目中的info.plist文件中,加上

iOS9 设置_第1张图片

NSAppTransportSecurity字典类型
NSAllowsArbitraryLoads 字典的一个key 对应得value : YES

你可能感兴趣的:(iOS9 设置)