Top "Nsurlconnection" questions

An NSURLConnection is the Apple Foundation Framework class that provides support to perform the loading of a URL request.

How to use iOS Reachability

I'm developing an iPhone app that uses the network. The iPhone communicate with my server via HTTP request and should …

iphone objective-c ios nsurlconnection reachability
What is the biggest difference between NSURLConnection and NSURLSession

NSURLSession is new network SDK than NSURLConnection from Apple. 3rd old choice is CFNetwork. Question here is to figure out …

ios8 nsurlconnection nsurlsession cfnetwork
Handling redirects correctly with NSURLConnection

For the purposes of this, I'm going to pretend the original url is http://host/form and the new url …

iphone cocoa cocoa-touch redirect nsurlconnection
Ignoring certificate errors with NSURLConnection

I am getting this error The certificate for this server is invalid. You might be connecting to a server that …

cocoa-touch cocoa nsurlconnection
NSURLConnection NSURLRequest proxy for asynchronous web service calls

I have multiple views which make the same NSURLRequest/NSURLConnection request. Ideally, in order to get some code reuse, I'd …

iphone asynchronous uiviewcontroller nsurlconnection nsurlrequest
How do I remove/decode URL percent encoding?

I want to take a url and convert it to a more readable format. For example I have the following …

ios objective-c nsstring nsurlconnection nsurl
Retrieve HTTPResponse/HTTPRequest status codes in iOS?

I need to check and evaluate the HTTP Status Codes in my iPhone app. I've got an NSURLRequest object and …

ios objective-c nsurlconnection
NSURLSession + server with self signed cert

I have an app that is production along with a development server that has a self signed certificate. I am …

ios objective-c ios7 nsurlconnection nsurlsession
NSURLConnection delegate methods are not called

I am trying to create a simple NSURLConnection to communicate with a server using a GET request. Connection works well, …

iphone nsurlconnection nsurlprotocol
NSURLConnection deprecated in iOS9

I want to download a file with a NSURLRequest and save it but in the line with the NSData * data = ... …

ios nsurlconnection nsurlsession ios9