Slide 15
Slide 15 text
dispatch_async
• Difference between these?
dispatch_async(queue, ^{
// Do Something
});
// Small window for other stuff to be put on queue
dispatch_async(queue, ^{
// Do Something Else
});
dispatch_async(queue, ^{
// Do Something
// Next block not put on queue until this one executes
dispatch_async(queue, ^{
// Do Something Else
});
});