is there any difference between DISPATCH_QUEUE_PRIORITY_HIGH and user-interactive for QoS in Dispatch Queue?
Asked
Active
Viewed 668 times
2 Answers
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.
-
Hi Cristik, when to give priority or QoS to distach queue? – nuttekar Jul 30 '18 at 10:04
-
@nuttekar the documentation should give you the best answer to this. If you can't find it in the documentation you can ask another question on SO. – Cristik Jul 30 '18 at 10:06
-
what will happen if i give high priority with background as a QoS? – nuttekar Jul 30 '18 at 10:06