MIKMIDIChannelVoiceCommand

Objective-C

@interface MIKMIDIChannelVoiceCommand : MIKMIDICommand

Swift

class MIKMIDIChannelVoiceCommand : MIKMIDICommand

MIKMIDIChannelVoiceCommand is used to represent MIDI messages whose type is any of the channel voice command subtypes. Specific support for channel voice command subtypes is provided by subclasses of MIKMIDIChannelVoiceCommand (e.g. MIKMIDIControlChangeCommand, MIKMIDINoteOnCommand, etc.)

  • The MIDI channel the message was or should be sent on. Valid values are from 0-15.

    Declaration

    Objective-C

    @property (nonatomic, readonly) UInt8 channel;

    Swift

    var channel: UInt8 { get }
  • The value of the command. The meaning of this property is different for different subtypes. For example, for a control change command, this is the controllerValue. For a note on command, this is the velocity.

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSUInteger value;

    Swift

    var value: UInt { get }