我正在创建一个在 Swift 2(beta 3)中实现AVCaptureFileOutputDelegate和AVCaptureVideoDataOutputSampleBufferDelegate协议的类,但由于两个协议定义了非常相似的函数(故意这样;有示例Objective-C),我收到编译器错
冲突的协议扩展是AVCaptureFileOutputDelegate的captureOutput(_:didOutputSampleBuffer:fromConnection:)和AVCaptureVideoDataOutputSampleBufferDelegate的captureOutput(_:didOutputSampleBuffer:fromConnection:).函数签名的唯一区别是captureOutput参数的类型(分别为AVCaptureFileOutput和AVCaptureOutput).
我认为在我的函数定义中使用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中通常使用的方法不同的领域?
谢谢.
至少考虑到目前的Swift测试版,我无法找到解决方法.我改为使用一个单独的类作为AVCaptureFileOutputDelegate委托.不优雅,但功能齐全.