I am using NSOperationQueue to run the task. I am using background processing in my application. But while adding tasks in NSOperationQueue, I found that tasks will be added in a queue format.
- Does
NSOperationQueueperforms parallel task or sequential task processing? - If not parallel, then how can I achieve parallel task operations in my app?
I would recommend you read this document about concurrency programming.