I\'m currently working on Xcode 7 beta 6. I\'m trying to send a \"DELETE\" request to http://mySubdomain.herokuapp.com
The error I receive is:
I have solved it with adding some key in info.plist. As I am using objective C for some native application.
The steps I followed are:
Opened my Projects info.plist file
Added a Key called NSAppTransportSecurity as a Dictionary.
NSAllowsArbitraryLoads as Boolean and set its value to YES as like following image.Clean the Project and Now Everything is Running fine as like before.
Ref Link:
https://stackoverflow.com/a/32631185/2905967
https://stackoverflow.com/a/32609970