An NSURLConnection is the Apple Foundation Framework class that provides support to perform the loading of a URL request.
I am trying to establish a HTTPS connection to a server using my app. But the connection fails due to …
ssl https nsurlconnection nsurlrequestI get the following error from NSURLConnection connectionDidFinishLoading "The operation couldn’t be completed. (Cocoa error 3840.)" (JSON text did not …
ios objective-c json xcode nsurlconnectionWhen I send a request and get an error with the error code -1009, what does that mean? I'm not …
ios macos cocoa cocoa-touch nsurlconnectionI have a ton of repeating code in my class that looks like the following: NSURLConnection *connection = [[NSURLConnection alloc] initWithRequest:…
objective-c iphone cocoa cocoa-touch nsurlconnectionI have the following problem. On a NSMutableURLRequest using the HTTP method POST the timeout interval set for the connection …
ios objective-c post nsurlconnectionHey I am using a NSURL Connection to receive data. [NSURLConnection sendSynchronousRequest: //create request from url [NSURLRequest requestWithURL: //create url …
iphone cocoa cocoa-touch nsurlconnectionI'm trying do to an app which uses a database (actually in my localhost), I tried with ASIHTTPRequest but having …
objective-c ios nsurlconnection nsurlrequestI need to parse a xml file from a password protected URL I tried the following NSURLCredential *credential = [NSURLCredential credentialWithUser:@"…
iphone ios nsurlconnection nsurlrequest nsurlcredentiali am sending an object to this adrees : https://sandbox.itunes.apple.com/verifyReceipt with NSUrlconnection and i am trying …
ios objective-c xcode cocoa-touch nsurlconnectionThe Situation In my app, I am currently downloading an mp3 file (to docs directory) using [NSData dataWithContentsOfURL:URL], a …
iphone xcode nsurlconnection nsurlrequest