我试图按照要求异步处理方法,一旦第一个方法完成,只有第二个方法应该开始执行。问题是第一种方法本身具有在后台线程上运行的代码。
我尝试了dispatch_semaphore_wait,但那也没有用。
dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0);
dispatch_group_t group = dispatch_group_create();
dispatch_group_async(group, queue, ^{
[self firstMethod];
NSLog(@"firstMethod Done");
});
dispatch_group_notify(group, queue, ^ {
NSLog(@"1st method completed");
NSLog(@"2nd method starting");
[self secondMethod];
});
FirstMethod本身在另一个工作线程上运行,如此
-(void)firstMethod
{
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^{
//processing here.....
}];
实现它的最佳方法是什么,我无法更改firstMethod的定义,因为它是由第三方提供的,并且更改它意味着更改大量现有代码从此方法被调用
答案 0 :(得分:12)
您可以使用完成块。您只需要以这种方式修改firstMethod:
- (void)firstMethodWithOnComplete:(void (^)(void))onComplete {
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^{
//processing here.....
onComplete();
});
}
然后以这种方式使用它:
[self firstMethodWithOnComplete:^{
[self secondMethod];
}];
答案 1 :(得分:-1)
调度单个队列并按顺序调用您的方法
dispatch_group_async(group, queue, ^{
[self firstMethod];
NSLog(@"firstMethod Done");
[self secondmethod];
});
或者您可以派遣一组3个并发队列(这是一个疯狂猜测)