[Solved] GCD flow how to write
dispatch_release(queue); don’t do it there, the dispatch queue that you are calling its going to a backThread, so wat is happening is :- your queue is getting released before the block of code executes. since your queue looks like an ivar, release it in dealloc. Rest, your code looks fine ..put a breakpoint inside and … Read more