Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save trinnguyen/fb50e182cc36f4205a14e6701603f1e9 to your computer and use it in GitHub Desktop.
Save trinnguyen/fb50e182cc36f4205a14e6701603f1e9 to your computer and use it in GitHub Desktop.
App Transport Security in iOS 9
`App Transport Security has blocked a cleartext HTTP (http://) resource load since it is insecure`
Solution: Temporary disable all
```
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key><true/>
</dict>
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment