从主函数返回值之前如何等待委托函数完成

时间:2019-09-05 09:47:44

标签: ios objective-c asynchronous camera delegates

我有一个用于捕获真实深度相机信息的自定义函数,并且在委托函数完成对捕获的照片的处理之前会返回该函数。我需要以某种方式等到所有代表都完成后才能返回正确的值。

我尝试将主函数调用包装到一个同步块中,但这并不能解决问题。

- (NSDictionary *)capture:(NSDictionary *)options resolve:(RCTPromiseResolveBlock)resolve reject:(RCTPromiseRejectBlock)reject
{
  if (@available(iOS 11.1, *)) {
      // Set photosettings to capture depth data
      AVCapturePhotoSettings *photoSettings = [AVCapturePhotoSettings photoSettingsWithFormat:@{AVVideoCodecKey : AVVideoCodecJPEG}];
      photoSettings.depthDataDeliveryEnabled = true;
      photoSettings.depthDataFiltered = false;
      @synchronized(self) {
          [self.photoOutput capturePhotoWithSettings:photoSettings delegate:self];
      }
  }
  // Somehow need to wait here until the delegate functions finish before returning
  return self.res;
}

调用太晚的委托函数:

- (void)captureOutput:(AVCapturePhotoOutput *)output didFinishProcessingPhoto:(AVCapturePhoto *)photo error:(NSError *)error
{
  Cam *camera = [[Cam alloc] init];
  self.res = [camera extractDepthInfo:photo];
}

当前nil会在调用委托之前返回,只有在此之后,委托函数才会将所需的结果分配给self.res

1 个答案:

答案 0 :(得分:1)

我相信您要寻找的是if oSh.Type = msoChart

信号量使您可以锁定线程,直到执行辅助操作为止。这样,您可以将方法的返回推迟到委托返回之前(如果您正在辅助线程上进行操作)。

这种方法的问题是您将锁定线程!因此,如果您在主线程中操作,则您的应用将无响应。

我建议您考虑将响应移至完成框,类似于:

dispatch_semaphore_t

然后在结尾处调用完成内容:

-(void)capture:(NSDictionary *)options resolve:(RCTPromiseResolveBlock)resolve reject:(RCTPromiseRejectBlock)reject completion:(void (^)(NSDicitionary* ))completion {
    self.completion = completion
    ...
}