取消线程中工作的GCD块
我有以下块在后台执行请求。
在该请求完成之前我如何取消该请求?
dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
dispatch_async(queue, ^{
NSData *thumbnailData = [NSURLConnection sendSynchronousRequest:request];
...
});
I have the following block which performs a request in the background.
How may I cancel this request before it has completed?
dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
dispatch_async(queue, ^{
NSData *thumbnailData = [NSURLConnection sendSynchronousRequest:request];
...
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
一旦发送就无法取消...
您可以使用解决方法,例如:
You can't cancel once you've dispatched...
You can use a workaround, like:
您可以使用更高级别的“NSOperationQueue”,将操作添加到队列后,然后您可以取消所有操作。
You can use the higher level "NSOperationQueue", after adding the operation to queue, then you can cancelAllOperations.
你不能。您必须使用 NSURLConnection 的异步接口才能取消请求。
You can't. You have to use the asynchronous interface of
NSURLConnection
to be able to cancel requests.