You could also subclass NSURLConnection and add any additional data to your 
subclass that you can easily access in the callbacks.

On Jun 29, 2010, at 12:11 PM, Dave DeLong wrote:

> If you're spawning dozens of connections, you may want to consider giving 
> each one a separate delegate object and encapsulating that connection's 
> specific logic in that delegate.  The url connection delegate might then have 
> a weak pointer back to the original controller to notify when the connection 
> is finished, at which point the controller could extract any data it needs 
> from the connection delegate.
> 
> Dave
> 
> On Jun 29, 2010, at 1:08 PM, [email protected] wrote:
> 
>> Now, a devil's advocate question:
>> If I have lots of connections, say two dozen, or say I'm spawning 
>> connections continuously, would this be the most efficient way of doing 
>> this? I'd likely store them in an NSArray and iterate/compare until I find 
>> the right one. There could be lots of comparisons.
> _______________________________________________
> 
> Cocoa-dev mailing list ([email protected])
> 
> Please do not post admin requests or moderator comments to the list.
> Contact the moderators at cocoa-dev-admins(at)lists.apple.com
> 
> Help/Unsubscribe/Update your Subscription:
> http://lists.apple.com/mailman/options/cocoa-dev/stevo%40monkey-tools.com
> 
> This email sent to [email protected]

-Stevo



_______________________________________________

Cocoa-dev mailing list ([email protected])

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to [email protected]

Reply via email to