Reputation: 2661
I've googl'd about, looking for an monotouch example using NSInvocationOperation, no luck. I also can't find the class in the touch framework library. (Only the NSOperation class.)
Now, I can use threading to load info asynchronously, however I'm thinking that the iPhone operation stack might be the preferred method.
Is NSInvocationOperation not supported yet?
Upvotes: 1
Views: 123
Reputation: 5056
No it does not, as you should use the threadpool, and QueueUserWorkItem and friends.
Upvotes: 1