Xcode_7_beta模拟器iOS9无法连接网络
he resource could not be loaded because the App Transport Security policy requires the use of a secure connection.
在iOS9的iPhone模拟器中来调试的时候出现“The resource could not be loaded because the App Transport Security policy requires the use of a secure connection.
”
一开始以为是Xcode的beta版本的问题,后来发现不对,肯定是自己配置的问题,goggle一番后在github找到一篇番文,从而尝试之,奇效显著。原文
解决方法:在App中的info.plist
中添加NSAppTransportSecurity
(Dictionary),在其中添加一个key,NSAllowsArbitraryLoads
(Boolean)并设置为YES
.
希望可以帮助到大家。