I am using NSInvocationOperation with NSOperationQueue developing in iOS5.
According to apple documentation on invocation objects:
The NSInvocationOperation class is a concrete subclass of NSOperation... This class implements a non-concurrent operation.
Ok, so my NSInvocationOperation object executes synchronously? (correct me here) Apple's docs also says on operation queue objects:
In iOS, operation queues do not use Grand Central Dispatch to execute operations. They create separate threads for non-concurrent operations and launch concurrent operations from the current thread.
I am using the NSInvocationObject, which is a non-concurrent object, and adding it to to the operation queue like so:
[operationQueue addOperation:operation];
so my question is: 1) Since the operation queue will be spawning a separate thread to execute the NSInvocationObject as it says in the docs, will it be run asynchronously instead of synchronously?