Xcode7 使用NSURLSession发送HTTP请求的问题

自从使用了xcode7之后,发现各种问题,比如下面这个

Application 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.

最后通过各种途径查找,终于找到办法

编辑 info.plist,加入如下设置:

NSAppTransportSecurity这个字段是dic的

然后在下面加入

NSAllowsArbitraryLoads,设置为yes就ok了,

效果如下



到此,问题解决。


详细查看

https://developer.apple.com/library/prerelease/ios/releasenotes/General/WhatsNewIniOS/Articles/iOS9.html#//apple_ref/doc/uid/TP40016198-DontLinkElementID_13

你可能感兴趣的:(iOS)