Re: Not sure about autorelease pools in NSOperations

2011-04-12 Thread G S
Thanks for that thorough explanation, Wim. In most of my operations I'm just calling C++ objects, so I doubted that I need the pool. So far I'm pleased with operations and queues. Pretty cool and not hard to use. Not too portable though, I guess... Gavin ___

Re: Not sure about autorelease pools in NSOperations

2011-04-11 Thread Wim Lewis
On 11 Apr 2011, at 7:38 PM, G S wrote: > I haven't really managed autorelease pools explicitly before, but the > NSOperation doc says to use one in your NSOperation derivatives. My > question is where to put it. The example shows the pool being created and > released in the main() function, but