gpt4 book ai didi

ios - 如何从 iOS 中的 NSOperationQueue 中删除操作?

转载 作者:塔克拉玛干 更新时间:2023-11-02 10:03:37 27 4
gpt4 key购买 nike

由于我已使用此概念从 Amazon S3 Bucket 下载多个图像,如何在下载过程中从 NSOperationQueue 中删除添加的操作?

还有,如果我想在下载过程中停止所有图片的下载怎么办?

最佳答案

您可以使用以下行取消所有队列操作

[queue cancelAllOperations];

你也可以这样做:

NSArray *operations = [queue operations];

for (NSOperation *op in operations) {
if (!op.isCancelled) {
[op cancel];
}
}

但是,如果您想在多个请求之间取消队列,请查看我的回答,它将指导您这样做:

How to cancel operation queue in another view controller

关于ios - 如何从 iOS 中的 NSOperationQueue 中删除操作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26274139/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com