I am working on an iOS App. The app is working fine when I am running on different iOS versions e.g. 7.1, 8.3, 8.4 but I am facing an issue when I am trying to run the app on iOS 9 beta (on Simulator).
I went through several links, one way was mentioned somewhere that by adding the following snippet to the info.plist file it would work but unfortunately this is also not working for me.
<key> NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
Also found this
<key>NSTemporaryExceptionRequiresForwardSecrecy</key> <false/>
But this is also not working. What I have understood after visiting several links is that in iOS 9 Apple won't let you enter using an unsecured connection.