我在下面看到要使用的问题' captureStillImageAsynchronouslyFromConnection'函数在swift中: How to convert code AVFoundation objective c to Swift?
当我尝试使用AVFoundation功能时:
var stillImageOutput: AVCaptureStillImageOutput!
//...Initialize stillImageOutput
stillImageOutput.captureStillImageAsynchronouslyFromConnection(videoConnection, completionHandler: {(imageSampleBuffer, error) in
if imageSampleBuffer {
var imageData = AVCaptureStillImageOutput.jpegStillImageNSDataRepresentation(imageSampleBuffer as CMSampleBuffer) // I get error on this line saying: 'Use of module ' CMSampleBuffer' as a type'
self.processImage(UIImage(data: imageData))
}
})
我在XCode上遇到了错误,该错误表示'使用模块' CMSampleBuffer'作为一种类型'。 我尝试用稍微不同的方式多次重写同一行,但我无法找到解决方案。
我做错了什么,或者可能是摇摇欲坠的XCode Beta无法正常工作?
提前谢谢。
答案 0 :(得分:1)
@Jack和@Christian的解决方案对我有用。 我对导入CoreMedia 不够谨慎。 我之前从未使用过这个框架,也不知道问题是否是由于没有导入正确的框架。 谢谢你的帮助!