我在此处的 AudioKit 示例中关注麦克风分析:
http://audiokit.io/examples/MicrophoneAnalysis/
该图循环显示音频波形。
当我点击一个按钮时,我想停止在绘图内绘图,但我不知道如何告诉绘图停止绘制麦克风输入。
这是我的情节配置:
func setupPlot() {
plot = AKNodeOutputPlot(microphone, frame: audioInputPlot.bounds)
plot.plotType = .rolling
plot.shouldFill = true
plot.shouldMirror = true
plot.color = UIColor(red:0.24, green:1.00, blue:0.08, alpha:1.0)
plot.alpha = 0.0
plot.setRollingHistoryLength(200)
}