Serializing NSURLConnection Requests (iOS) - Use Synchronous Request?
问题 I'm looping through a list of dates and making a request to a web server for each date in the list. I would like each date to be processed completely before the subsequent request is sent to the server. To do this, I have set up a serial dispatch queue using GCD. Each time through the date loop, a block is added to the queue. The problem I am having is that my NSURLConnection is set up using the standard asynchronous call. This results in requests not blocking any subsequent requests. They