Skip to content

Instantly share code, notes, and snippets.

@niwatako
Last active July 15, 2017 06:02
Show Gist options
  • Save niwatako/e3859bb340d5dc5f3972208797b43b9f to your computer and use it in GitHub Desktop.
Save niwatako/e3859bb340d5dc5f3972208797b43b9f to your computer and use it in GitHub Desktop.
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
let request = URLRequest(url: URL(string: "http://xxx.appspot.com/")!)
NSURLConnection.sendAsynchronousRequest(request, queue: .main) { response, data, error in
if let error = error {
print(error)
} else {
print(response)
}
}
return true
}
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>NSAppTransportSecurity</key>
<dict>
<key>NSExceptionDomains</key>
<dict>
<key>xxx.appspot.com</key>
<dict>
<key>NSExceptionAllowsInsecureHTTPLoads</key>
<true/>
</dict>
</dict>
</dict>
<!-- 中略 -->
</dict>
</plist>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment