0

I would like to make runtime UI changes according to notes played by a sequencer.

Other solutions use a Callback Instrument and add another track with encoded values to the sequencer (f.e.: AudioKit ios AKSamplerMetronome).

However, the syntax appears to have changed, as running

callbackTrack?.setMIDIOutput(callbackInst.midiIn)

tells me that AKCallbackInstrument has no such member.

What is the updated syntax? Or is there a newer, better way to do this?

AS Mackay
  • 2,831
  • 9
  • 19
  • 25

1 Answers1

0

The class formerly known as AKCallbackInstrument has been renamed to AKMIDICallbackInstrument. The current AKCallbackInstrument is a different class.

c_booth
  • 2,185
  • 1
  • 13
  • 22