0

is there any difference between DISPATCH_QUEUE_PRIORITY_HIGH and user-interactive for QoS in Dispatch Queue?

rmaddy
  • 314,917
  • 42
  • 532
  • 579
nuttekar
  • 25
  • 6

2 Answers2

0

Apple has deprecated Dispatch queue priority from iOS 8.0 instead of that we can use Quality of service.

So Basically QOS and priority does same thing.

nuttekar
  • 25
  • 6
-1

From Apple documentation:

Items dispatched to the queue run at high priority; the queue is scheduled for execution before any default priority or low priority queue.

This constant maps to the QOS_CLASS_USER_INITIATED class.

So, they are not entirely equivalent.

Community
  • 1
  • 1
Cristik
  • 30,989
  • 25
  • 91
  • 127