Tag Archives: NSURLConnection

NSURLConnection and GCD

If you have a class that uses NSURLConnectionDataDelegate and does asynchronous work via the NSURLConnectionDataDelegate methods

do not pair it with GCD because it itself is a separate worker thread that does the connections for you. Hence use NSURLConnection async by itself.

If you use NSURLConnection sync version, then you can use it with GCD.