如果到达序列末尾,如何使AKSequencer自动停止?

时间:2019-03-10 11:48:04

标签: ios audiokit

我注意到AKSequencer继续播放(AKSequencer.isPlaying为true),即使序列中没有更多音符可以播放。是否可以使其在序列结束时自动停止?

1 个答案:

答案 0 :(得分:2)

您可以使用AKMIDICallbackInstrument根据音序器播放的内容来触发代码。在这种情况下,请添加其他轨道并将其输出设置为AKMIDICalllbackInstrument。将一个事件添加到该音轨上您希望音序器停止的位置(如果您不知道多久可以使用sequencer.length)。然后设置回调工具的回调函数,以在收到事件时停止定序器。

var seq = AKSequencer()
var callbackInst: AKMIDICallbackInstrument!
var controlTrack: AKMusicTrack!

func setUpCallback() {
    // set up a control track
    controlTrack = seq.newTrack()

    // add an event at the end
    // we don't care about anything here other than the position
    controlTrack.add(noteNumber: 60,
                     velocity: 60,
                     position: seq.length,
                     duration: AKDuration(beats: 1))

    // set up the MIDI callback instrument
    callbackInst = AKMIDICallbackInstrument()
    controlTrack?.setMIDIOutput(callbackInst.midiIn)

    // stop the sequencer when the control track's event's noteOn is recieved
    callbackInst.callback = { statusByte, _, _ in
        guard let status  = AKMIDIStatus(statusByte: statusByte) else { return }
        if status == .noteOn {
            self.seq.stop()
        }
    }
}