I have a NSURLConnection asynchrone in NSOperation in concurrency mode. I know that by default, the NSOperationQueue creates the thread for the NSOperation (non-concurrent). But, in concurrency, does it means that i have one thread in another thread ? if yes, it's a good practice ?
(a example : http://www.dribin.org/dave/blog/archives/2009/05/05/concurrent_operations/)
Thx you :)