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