我的条件是,当我将tableview滚动到底部或顶部时,我需要做一些重新加载,刷新作业,从服务器请求新数据,但我想检查上一个作业是否完成或不。如果最后一个请求仍然有效,我不应该发出另一个请求。
我使用从 dispatch_queue_create()创建的相同后台队列来处理httpRequest。
- (id)init {
self = [super init];
if (self) {
...
dataLoadingQueue = dispatch_queue_create(@"DataLoadingQueue", NULL);
}
return self;
}
从现在开始,我只使用BOOL值来检测作业是否正在工作。像这样:
if(!self.isLoading){
dispatch_async(dataLoadingQueue, ^{
self.isLoading = YES;
[self loadDataFromServer];
});
}
我只是想知道是否有任何方法可以将代码更改为如下所示:
if(isQueueEmpty(dataLoadingQueue)){
dispatch_async(dataLoadingQueue, ^{
[self loadDataFromServer];
});
}
因此,我可以删除显示在任何地方且需要继续跟踪的恼人的BOOL值。
答案 0 :(得分:5)
为什么不改为使用NSOperationQueue(检查[operationQueue operationCount])?
如果您只想使用GCD,dispatch_group_t可能适合您。
@property (atomic) BOOL isQueueEmpty;
dispatch_group_t dispatchGroup = dispatch_group_create();
dispatch_group_async(dispatchGroup, dataLoadingQueue, ^{
self.isQueueEmpty = NO;
//Do something
});
dispatch_group_notify(dispatchGroup, dataLoadingQueue, ^{
NSLog(@"Work is done!");
self.isQueueEmpty = YES;
});
任务完成后,该组将为空,并在dispatch_group_notify
中触发通知块。