https://developer.apple.com/videos/wwdc/2015/?id=711 @5:55
I can\'t seem to be able to add this to my info.plist. There is no value it. I\'m running XCode Version 7.
Open your info.plist file of your project with any editor of your preference, then add this code at the end of the file before the last
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
<key>NSAppTransportSecurity</key>
<dict>
<key>NSExceptionDomains</key>
<dict>
<key>uservoice.com</key>
<dict>
<key>NSIncludesSubdomains</key>
<true/>
<key>NSExceptionRequiresForwardSecrecy</key>
<false/>
</dict>
</dict>
</dict>