欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

IOS开发中异步网络请求上实现同步逻辑

程序员文章站 2023-12-20 17:19:34
ios开发中异步网络请求上实现同步逻辑 前提: 可能遇到一些问题,比如上传多个数据,需要等多个数据上传成功后做一定的处理,而且一个个上传,万一哪个上传失败了,后面就不需...

ios开发中异步网络请求上实现同步逻辑

前提:

可能遇到一些问题,比如上传多个数据,需要等多个数据上传成功后做一定的处理,而且一个个上传,万一哪个上传失败了,后面就不需要上传了,直接报错。

之前asi的网络库中是有同步请求的接口,所以很好处理,afnetwork的网络库只有异步的网络请求,该怎么实现呢?

1.循环异步拼组

- (void)uploadfile:(nsarray *)imagearray atindex:(nsinteger)index imagescount:(nsinteger)count completeblock:(uploadcompleteblock)block {
 fncircleimage *atcimage = imagearray[index];
 nsstring *filepath = atcimage.localfilepath;
 [self.resourcemanager upload:filepath progress:nil completion:^(nsstring * _nullable urlstring, nserror * _nullable error) {
  if (error == nil) {
   atcimage.remoteurl = urlstring;

   nsinteger idx = index + 1;
   if (idx >= count) {
    block(nil);
   } else {
    [self uploadfile:imagearray atindex:idx imagescount:count completeblock:block];
   }
  } else {
   block(error);
  }
 }];
}

2.信号量异步转同步

__block nserror *e = nil;
[imagearray enumerateobjectsusingblock:^(nsstring *filepath, nsuinteger idx, bool * _nonnull stop) {
 __block dispatch_semaphore_t t = dispatch_semaphore_create(0);
 [self upload:filepath progress:nil completion:^(nsstring * _nullable urlstring, nserror * _nullable error) {
  if (error == nil) {
   
  } else {
   e = error;
   *stop = yes;
  }
  dispatch_semaphore_signal(t);
 }];
 dispatch_semaphore_wait(t, dispatch_time_forever);
}];

3.nsoperationqueue可控队列

1).继承nsoperation实现上传逻辑,完成发出通知或者block回调

2).用上传数据创建operation数组,加入nsoperationqueue中执行

3).根据完成回调的结果和个数判断结果,如果中间有失败,可以关闭未执行的operation

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

上一篇:

下一篇: