NSURLSession is the API for HTTP connections introduced in iOS 7 and OS X 10.
If I create a NSURLSessionDownloadTask, and later cancel it before it finishes, the completion block still fires seemingly. let downloadTask = …
ios cocoa-touch swift nsurlsession nsurlsessiondownloadtaskIn my app i'm trying to make http post request with json data. The following json must be transferred to …
ios json swift nsurlsessionHi I receive the following error: Error Domain=NSURLErrorDomain Code=-1202 \"The certificate for this server is invalid. You might …
ios amazon-web-services ssl nsurlsession tls1.2I am using the following code to post an image to my server. @IBAction func postButtonPressed(sender: UIButton) { let task = …
ios swift nsurlsession nsurlerrordomainI'm using the new NSURLSession API and allowing the user to download files. I'd like to try and tell my …
ios ios7 nsurlsessionAs you can see, I'm receiving a JSON file, parsing it using SwiftyJSON, and trying to return totalTime, but it …
json asynchronous swift nsurlsessionI'm experiencing some strange behaviour with my test app. I've about 50 simultaneous GET requests that I send to the same …
swift concurrency nsurlsession alamofire nsurlsessionconfigurationi have like 2 problems here , first i cant set NSURLSessionDownloadDelegate with a swift project, compiler says Type 'ViewController' does not …
ios swift nsurlsession nsurlsessiondownloadtaskI got 3 error when i update my Xcode 1- App Transport Security has blocked a cleartext HTTP (http://) resource load …
http nsurlsessionWhat are the best practices for making a serial queue of NSURLSessionTasks ? In my case, I need to: Fetch a …
ios cocoa-touch nsurlsession