Cocoa: Checks required for multiple asynchronous NSURLConnections using same delegate functions?
This is with reference to the StackOverflow question Managing multiple asynchronous NSURLConnection connections I have multiple asynchronous HTTP requests being made at the same time. All these use the same NSURLConnection delegate functions. (The receivedData object is different for each connection as specified in the other question above. In the delegate, I parse the receivedDate object, and do additional operations on those parsed strings) Everything works fine for me so far, but I'm not sure if I need to do anything to ensure correct “multithreaded” behavior. Is it possible that more than