MIKMutableMIDIControlChangeCommand
Objective-C
@interface MIKMutableMIDIControlChangeCommand : MIKMIDIControlChangeCommand
Swift
class MIKMutableMIDIControlChangeCommand : MIKMIDIControlChangeCommand
The mutable counterpart of MIKMIDIControlChangeCommand.
-
This is currently undocumented. Documentation contributions are always welcome!
Declaration
Objective-C
@property (nonatomic) UInt8 channel
Swift
var channel: UInt8 { get set }
-
This is currently undocumented. Documentation contributions are always welcome!
Declaration
Objective-C
@property (nonatomic) NSUInteger value
Swift
var value: UInt { get set }
-
This is currently undocumented. Documentation contributions are always welcome!
Declaration
Objective-C
@property (nonatomic) NSUInteger controllerNumber
Swift
var controllerNumber: UInt { get set }
-
This is currently undocumented. Documentation contributions are always welcome!
Declaration
Objective-C
@property (nonatomic) NSUInteger controllerValue
Swift
var controllerValue: UInt { get set }
-
The 14-bit value of the command.
This property always returns a 14-bit value (ranging from 0-16383). If the receiver is not a 14-bit command (-isFourteenBitCommand returns NO), the 7 least significant bits will always be 0, and will be discarded when setting this property.
When setting this property, if the fourteenBitCommand property has not been set to YES, the 7 LSbs will be discarded/ignored.
Declaration
Objective-C
@property (nonatomic) NSUInteger fourteenBitValue;
Swift
var fourteenBitValue: UInt { get set }
-
This is currently undocumented. Documentation contributions are always welcome!
Declaration
Objective-C
@property (nonatomic, getter = isFourteenBitCommand) BOOL fourteenBitCommand
Swift
var isFourteenBitCommand: Bool { get set }
-
This is currently undocumented. Documentation contributions are always welcome!
Declaration
Objective-C
@property (nonatomic, strong) NSDate *timestamp
Swift
var timestamp: Date { get set }
-
This is currently undocumented. Documentation contributions are always welcome!
Declaration
Objective-C
@property (nonatomic) MIKMIDICommandType commandType
Swift
var commandType: MIKMIDICommandType { get set }
-
This is currently undocumented. Documentation contributions are always welcome!
Declaration
Objective-C
@property (nonatomic) UInt8 dataByte1
Swift
var dataByte1: UInt8 { get set }
-
This is currently undocumented. Documentation contributions are always welcome!
Declaration
Objective-C
@property (nonatomic) UInt8 dataByte2
Swift
var dataByte2: UInt8 { get set }
-
This is currently undocumented. Documentation contributions are always welcome!
Declaration
Objective-C
@property (nonatomic) MIDITimeStamp midiTimestamp
Swift
var midiTimestamp: MIDITimeStamp { get set }
-
This is currently undocumented. Documentation contributions are always welcome!
Declaration
Objective-C
@property (nonatomic, copy, null_resettable) NSData *data
Swift
var data: Data! { get set }