Swift 错误:使用模块“CMSampleBuffer”作为类型

问题描述 投票:0回答:1

我看到下面的问题,在 swift 中使用“captureStillImageAsynchronouslyFromConnection”函数: 如何将代码 AVFoundation Objective C 转换为 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 无法正常工作?

提前谢谢您。

swift avfoundation
1个回答
1
投票

@Jack 和@Christian 的解决方案对我有用。 我不够小心导入CoreMedia。 我以前从未使用过这个框架,不知道问题是否是由于没有导入正确的框架造成的。 谢谢您的帮助!

© www.soinside.com 2019 - 2024. All rights reserved.