Normally, in my iOS Applications that use quite a lot of HTTP requests to communicate with the server, I add an NSBlockOperation to the app's global NSOperationQueue, and then suspend and enable the queue when the application detects a change in internet connection status thus saving any requests currently in the queue until the queue is unsuspended. However, I am not completely sure that in this way, any operations that are currently running will be stopped, and then re-added to the top of the queue.
My question is: are there any better ways to deal with a change in the network status when you are working with HTTP Requests to a remote server i.e. in pausing, resuming, cancelling requests etc...

