gpt4 book ai didi

xcode - (Swift) 条件绑定(bind)的初始化程序必须具有可选类型,而不是 'AVAudioInputNode'

转载 作者:行者123 更新时间:2023-12-02 09:27:49 29 4
gpt4 key购买 nike

我正在尝试创建语音转文本功能,但收到错误:

条件绑定(bind)的初始化程序必须具有可选类型,而不是“AVAudioInputNode”

guard let inputNode = audioEngine.inputNode else {
fatalError("Audio engine has no input node")
}

最佳答案

AVAudioEngineinputNode 属性不是可选的。当首次访问 inputNode 时,音频引擎会按需创建一个单例。它不能为零,因此守卫没有意义。

因此,只需删除防护并按原样使用 audioEngine.inputNode 即可。它不能是nil

在使用之前,您仍然必须确保 inputNode 已连接到某个对象:

Check the input format of input node (specifically, the hardware format) for a non-zero sample rate and channel count to see if input is enabled.

(来自苹果文档)

关于xcode - (Swift) 条件绑定(bind)的初始化程序必须具有可选类型,而不是 'AVAudioInputNode',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46392377/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com