MIKMIDIPolyphonicKeyPressureEvent

Objective-C

@interface MIKMIDIPolyphonicKeyPressureEvent : MIKMIDIChannelEvent

Swift

class MIKMIDIPolyphonicKeyPressureEvent : MIKMIDIChannelEvent

A polyphonic key pressure (aftertouch) event.

This event most often represents pressing down on a key after it “bottoms out”.

  • The MIDI note number for the event.

    Declaration

    Objective-C

    @property (nonatomic, readonly) UInt8 note;

    Swift

    var note: UInt8 { get }
  • The pressure of the event. From 0-127.

    Declaration

    Objective-C

    @property (nonatomic, readonly) UInt8 pressure;

    Swift

    var pressure: UInt8 { get }