When using async download methods and delegates, is it possible to start multiple simultaneous nsconnections and handle them separately as each query completes? Or, will the system not automatically distinguish between them as your delegates receive pieces from each query? In which case, what would be a good approach to identify each connection uniquely as it enters through the delegates?

link|improve this question

Did you try it? – Jacques Cousteau Jul 15 '11 at 22:04
i wasn't sure how to approach this until I asked the question... and I got the answer needed to proceed. Not sure why my question was down voted. At least people found the discussion my question triggered to be useful. – andrewx Aug 12 '11 at 15:25
feedback

1 Answer

up vote 2 down vote accepted

The system won't automatically distinguish the NSURLConnections, instead, each delegate methods called is precising the concerned connection.

For example : - (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data;

the connection is connection. This way you can set several NSURLConnections and react accordingly.

I personnaly set NSURLConnection objects as ivars and test for equality in delegate methods, because using delegate, you will need to access the data containers from different methods.

You will find more information in the excellent URL Loading System Programming Guide from Apple.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.