I've been looking for some concrete scenarios for when NSOperation on the iPhone is an ideal tool to use in an application. To my understanding, this is a wrapper around writing your own threaded code. I haven't seen any Apple …
First of all I am writing code for iphone.
I need to be able to call a method on the main thread without using performSelectorOnMainThread.
The reason that I don't want to use performSelectorOnMainThread is that it causes problem when …