Re: how should I go about downloading files

2008-04-14 Thread Laimonas Simutis
On Fri, Apr 11, 2008 at 6:01 PM, Scott Anguish [EMAIL PROTECTED] wrote: On Apr 10, 2008, at 9:04 PM, Laimonas Simutis wrote: Hey, This is my first cocoa projects so I am kind of finding my way around the framework. The question I have is maybe more related to the design practices

Re: how should I go about downloading files

2008-04-14 Thread John Stiles
Laimonas Simutis wrote: On Fri, Apr 11, 2008 at 6:01 PM, Scott Anguish [EMAIL PROTECTED] wrote: On Apr 10, 2008, at 9:04 PM, Laimonas Simutis wrote: Hey, This is my first cocoa projects so I am kind of finding my way around the framework. The question I have is maybe more related to

Re: how should I go about downloading files

2008-04-11 Thread Scott Anguish
On Apr 10, 2008, at 9:04 PM, Laimonas Simutis wrote: Hey, This is my first cocoa projects so I am kind of finding my way around the framework. The question I have is maybe more related to the design practices with cocoa. I make a HTTP call to a server which gives me back a list of urls

Re: how should I go about downloading files

2008-04-10 Thread Michael Vannorsdel
You can start new downloads from the queue in your downloadDidFinish: delegate method. On Apr 10, 2008, at 7:04 PM, Laimonas Simutis wrote: The problem with the above is that I spawn as many downloaders as the urls returned by the server since downloadItem does't block. What would be the