Leslie Godwin
Leslie Godwin

Reputation: 2661

Does MonoTouch support NSInvocationOperation yet?

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

Answers (1)

Geoff Norton
Geoff Norton

Reputation: 5056

No it does not, as you should use the threadpool, and QueueUserWorkItem and friends.

Upvotes: 1

Related Questions