实现AVCaptureFileOutputDelegate和AVCaptureVideoDataOutputSampleBufferDelegate

时间:2015-07-17 19:40:51

标签: swift avfoundation swift2

我正在创建一个在Swift 2(beta 3)中同时实现AVCaptureFileOutputDelegateAVCaptureVideoDataOutputSampleBufferDelegate协议的类,但由于两个协议定义非常相似,我收到编译器错误函数(故意这样;有实现两种协议的示例Objective-C类)。

有冲突的协议扩展名是AVCaptureFileOutputDelegate的{​​{3}}和AVCaptureVideoDataOutputSampleBufferDelegate的{​​{3}}。函数签名的唯一区别是captureOutput参数的类型(分别为AVCaptureFileOutputAVCaptureOutput)。

我认为在我的函数定义中使用AVCaptureFileOutput可能有效,因为它是AVCaptureOutput的子类,但编译器仍报告错误:

Objective-C method 'captureOutput:didOutputSampleBuffer:fromConnection:' provided by method 'captureOutput(_:didOutputSampleBuffer:fromConnection:)' conflicts with optional requirement method 'captureOutput(_:didOutputSampleBuffer:fromConnection:)' in protocol 'AVCaptureVideoDataOutputSampleBufferDelegate'

有没有办法解决这个问题,或者强制编译器为这两个协议使用该函数?不知道这只是一个应该报告的Swift 2.0问题,还是一个Swift与Objective-C中通常使用的方法不同的领域?

感谢。

1 个答案:

答案 0 :(得分:0)

至少考虑到目前的Swift测试版,我无法找到解决方法。我改为使用一个单独的类作为AVCaptureFileOutputDelegate委托。不优雅,但功能齐全。