Skip to content

Instantly share code, notes, and snippets.

@tadamatu
Last active October 21, 2015 16:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tadamatu/31fada8a21d0692f7709 to your computer and use it in GitHub Desktop.
Save tadamatu/31fada8a21d0692f7709 to your computer and use it in GitHub Desktop.
iOS9にするとアプリ内のサイト表示ができなくなったときの解決法(HTTP通信ができない) ref: http://qiita.com/tadamatu/items/02b706bb21f9300276d8
<key>NSAppTransportSecurity</key>
<dict>
<key>NSExceptionDomains</key>
<dict>
<key>tadamatu0001.web.fc2.com</key>
<dict>
<key>NSIncludesSubdomains</key>
<true/>
<key>NSTemporaryExceptionAllowsInsecureHTTPLoads</key>
<true/>
</dict>
</dict>
</dict>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment