我正在使用GCD块在后台线程中调用我的服务。我想为用户提供取消按钮以取消处理/加载Svc。
如何在用户取消时停止执行 如果不可能指导我实现相同的功能
dispatch_async( dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
// Add code here to do background processing
//
//
dispatch_async( dispatch_get_main_queue(), ^{
// Add code here to update the UI/send notifications based on the
// results of the background processing
});
});
谢谢