我正在尝试在后台显示视频/相机 View ,同时我还允许在我的应用程序中为各种操作提供触觉反馈,但似乎 AVFoundation 对我正在进行的任何涉及触觉调用的调用都不太友好:

if #available(iOS 10.0, *) {
    let generator = UIImpactFeedbackGenerator(style: .light)
    generator.prepare()
    generator.impactOccurred()

    // More:

    let feedbackGenerator  = UISelectionFeedbackGenerator()
    feedbackGenerator.selectionChanged()
}
只要 AVFoundation 的内容被注释掉,触觉反馈就可以很好地工作,并且符合预期。有任何想法吗?
使用:
captureSession = AVCaptureSession()
和:
previewLayer = AVCaptureVideoPreviewLayer(session: captureSession)

最佳答案

我假设如果你使用 AVCaptureSession 那么你可能有这样的代码:

do {
    let audioDevice = AVCaptureDevice.default(for: .audio)
    let audioDeviceInput = try AVCaptureDeviceInput(device: audioDevice!)

    if captureSession.canAddInput(audioDeviceInput) {
        captureSession.addInput(audioDeviceInput)
    } else {
        print("Could not add audio device input to the session")
    }
} catch {
    print("Could not create audio device input: \(error)")
}

因此音频输入在触觉引擎上播放效果不佳。在播放触觉之前,您必须从捕获 session 中删除音频输入,然后再将其添加回来。

关于ios - AVFoundation 的触觉反馈效果不佳? (UIImpactFeedbackGenerator 等),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44212923/

10-11 03:01