MIKMIDIEndpoint
Objective-C
@interface MIKMIDIEndpoint : MIKMIDIObject
Swift
class MIKMIDIEndpoint : MIKMIDIObject
Base class for MIDI endpoint objects. Not used directly, rather, in use, instances will always be instances of MIKMIDISourceEndpoint or MIKMIDIDestinationEndpoint.
-
The entity that contains the receiver. Will be nil for non-wrapped virtual endpoints.
Declaration
Objective-C
@property (nonatomic, weak, readonly, nullable) MIKMIDIEntity *entity;
Swift
weak var entity: MIKMIDIEntity? { get }
-
Whether or not the endpoint is private or hidden. See kMIDIPropertyPrivate in MIDIServices.h.
Declaration
Objective-C
@property (nonatomic, readonly) BOOL isPrivate;
Swift
var isPrivate: Bool { get }