BMPAirPlayChangedEvent

Objective-C


@interface BMPAirPlayChangedEvent : BMPPlayerEvent

Swift

class AirPlayChangedEvent : PlayerEvent

See BMPPlayerListener.h for more information on this event.

  • Indicates whether AirPlay is active

    Declaration

    Objective-C

    @property (nonatomic, readonly, getter=isAirPlayActive) BOOL airPlayActive;

    Swift

    var isAirPlayActive: Bool { get }
  • Current playback time in seconds.

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSTimeInterval time;

    Swift

    var time: TimeInterval { get }
  • Undocumented

    Declaration

    Objective-C

    - (instancetype)initWithAirPlayActive:(BOOL)airPlayActive time:(NSTimeInterval)time NS_DESIGNATED_INITIALIZER;

    Swift

    init(airPlayActive: Bool, time: TimeInterval)