作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个自定义函数用于捕获真实深度相机信息,该函数在委托(delegate)函数完成处理捕获的照片之前返回。在我返回正确的值之前,我需要以某种方式等到委托(delegate)全部完成。
我尝试将主函数调用包装到一个同步块(synchronized block)中,但这并没有解决问题。
- (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;
}
被调用得太晚的委托(delegate)函数:
- (void)captureOutput:(AVCapturePhotoOutput *)output didFinishProcessingPhoto:(AVCapturePhoto *)photo error:(NSError *)error
{
Cam *camera = [[Cam alloc] init];
self.res = [camera extractDepthInfo:photo];
}
目前 nil
在委托(delegate)被调用之前返回,只有在之后委托(delegate)函数才会将所需的结果分配给 self.res
最佳答案
我相信您正在寻找的是dispatch_semaphore_t
。
信号量允许您锁定线程,直到执行辅助操作。这样,您可以推迟方法的返回,直到委托(delegate)返回为止(如果您在辅助线程上操作)。
这种方法的问题是您将锁定线程!因此,如果您在主线程中操作,您的应用程序将变得无响应。
我建议您考虑将响应移至完成 block ,类似于:
-(void)capture:(NSDictionary *)options resolve:(RCTPromiseResolveBlock)resolve reject:(RCTPromiseRejectBlock)reject completion:(void (^)(NSDicitionary* ))completion {
self.completion = completion
...
}
并在最后调用完成:
- (void)captureOutput:(AVCapturePhotoOutput *)output didFinishProcessingPhoto:(AVCapturePhoto *)photo error:(NSError *)error
{
Cam *camera = [[Cam alloc] init];
self.res = [camera extractDepthInfo:photo];
self.completion(self.res);
}
===编辑:Swift代码===
上面的代码将被翻译为:
var completion: (([AnyHashable: Any]) -> Void)?
func capture(options: [AnyHashable: Any], resolve: RCTPromiseResolveBlock, reject: RCTPromiseRejectBlock, completion: @escaping ([AnyHashable: Any]) -> Void) {
self.completion = completion
...
}
func photoOutput(_ output: AVCapturePhotoOutput, didFinishProcessingPhoto photo: AVCapturePhoto, error: Error?) {
let cam = Cam()
let result = cam.extractDepthInfo(photo)
self.completion?(result)
}
这里需要注意的是,鉴于对象将被复制,因此需要在捕获方法中将完成标记为 @escaping
。
关于ios - 如何在从主函数返回值之前等待委托(delegate)函数完成,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57802760/
我是一名优秀的程序员,十分优秀!