提前退出dispatch_async,Grand Central Dispatch

时间:2010-10-26 02:56:00

标签: iphone objective-c multithreading grand-central-dispatch

让我说我在调度异步中运行一些代码。 ..有没有办法在它完成之前终止它创建的线程?比如当用户点击取消时

dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{

    //start doing something here.. break bofore it finishes? 


    dispatch_async(dispatch_get_main_queue(), ^{

    //main thread stuff..   

    });



});

1 个答案:

答案 0 :(得分:3)

大卫是对的。 GCD没有内置的取消方法。这取决于客户(你)。