Is it possible to list by quick listing through [NSOperationQueue operations]? For instance:
for (NSOperation *op in [operationQueue operations]) {
}
Since operations are asynchronous and performed in another thread, it operationscan change at any time (including during the execution of the main thread). Does fast enumeration protect against this, or should I copy(and autorelease) use an array of operations?
source
share