我正在用swift5(swiftui)编写ios应用,我只是测试Audiokit是否可以工作,所以我从教程中复制了一些代码,如下所示:
let oscillator = AKOscillator()
AudioKit.output = oscillator //<-crash here
do{
try AudioKit.start()
}catch{
print("AK start error")
}
oscillator.start()
sleep(2)
崩溃消息为
AVAEInternal.h:76必需条件为假:[AVAudioEngineGraph.mm:2219:_Connect:(!destNodeMixerConns.empty()&&!isDestNodeConnectedToIONode)]
以及AppDelegate中的“线程1:信号SIGABRT”。 感谢您的帮助!