Is it OK to assign one NSObject as the delegate of multiple, asynchronous ASIHTTPRequests?
My concern is that two or more requests will call the same callback method on the delegate at the same time.
I checked that ASIHTTPRequest calls the delegate callbacks on the main thread, just as NSURLConnection does. So, it’s OK, right?
Yes, this is fine, normal, and part of the design of delegates.