需求:需要等异步网络请求完成之后返回值,才再执行下一步代码
实现:
1 、下面两个行代码需要成对存在,否则无效!
第一行代码写在请求之前
第二行代码写在请求完成之后返回值的里面
dispatch_group_enter
dispatch_group_leave
2、notify 等所有任务执行完毕时再执行。
最后把等待网络请求完成之后才执行的代码写在 dispatch_group_notify 里面
dispatch_group_notify
例:
dispatch_group_t group = dispatch_group_create();
dispatch_group_enter(group);
NSURLSessionDataTask *task = [session dataTaskWithURL:[NSURL URLWithString:@"https://www.baidu.com"] completionHandler:^(NSData * _Nullable data, NSURLResponse * _Nullable response, NSError * _Nullable error) {
NSLog(@"请求 1 的值");
dispatch_group_leave(group);
}];
[task resume];
dispatch_group_enter(group);
NSURLSessionDataTask *task2 = [session dataTaskWithURL:[NSURL URLWithString:@"https://www.baidu.com"] completionHandler:^(NSData * _Nullable data, NSURLResponse * _Nullable response, NSError * _Nullable error) {
NSLog(@"请求 2 的值");
dispatch_group_leave(group);
}];
[task2 resume];
dispatch_group_notify(group, dispatch_get_main_queue(), ^(){
NSLog(@"等待执行");
});
网友评论