BMPPlayerView

Objective-C


@interface BMPPlayerView : UIView

Swift

class PlayerView : UIView

Base class for player user interfaces which should work together with the BMPBitmovinPlayer. If you want to build your own UI on top of our player, extend this class.

  • Undocumented

    Declaration

    Objective-C

    @property (nullable, nonatomic, strong) BMPBitmovinPlayer* player

    Swift

    var player: Player? { get set }
  • Unavailable

    Undocumented

    Declaration

    Objective-C

    - (instancetype)init NS_UNAVAILABLE;
  • Unavailable

    Undocumented

    Declaration

    Objective-C

    - (instancetype)initWithFrame:(CGRect)frame NS_UNAVAILABLE;
  • Unavailable

    Undocumented

    Declaration

    Objective-C

    - (instancetype)initWithCoder:(NSCoder *)aDecoder NS_UNAVAILABLE;
  • Unavailable

    Undocumented

    Declaration

    Objective-C

    + (instancetype)new NS_UNAVAILABLE;
  • Undocumented

    Declaration

    Objective-C

    - (instancetype)initWithPlayer:(BMPBitmovinPlayer *)player frame:(CGRect)frame NS_DESIGNATED_INITIALIZER;

    Swift

    init(player: Player, frame: CGRect)