GoogleInteractiveMediaAds Framework Reference

  • IMAAVPlayerContentPlayhead is an implementation of IMAContentPlayhead specifically designed for AVPlayer and its subclasses.

  • It provides content tracking by attaching a periodic time observer to the designated AVPlayer.

  • This class simplifies content tracking integration when using AVPlayer as the content player.

  • Initialization requires an AVPlayer instance to be tracked, establishing the connection for content monitoring.

IMAAVPlayerContentPlayhead

@interface IMAAVPlayerContentPlayhead : NSObject <IMAContentPlayhead>

An implementation of IMAContentPlayhead for AVPlayer. Use this class to provide content tracking if your content player of choice is an AVPlayer or its subclass.

  • The player to track.

    Declaration

    Swift

    var player: AVPlayer { get }

    Objective-C

    @property (nonatomic, readonly) AVPlayer *_Nonnull player;
  • Initializes a IMAAVPlayerContentPlayhead that tracks a player. It will attach a periodic time observer to the player immediately.

    Declaration

    Swift

    init(avPlayer player: AVPlayer)

    Objective-C

    - (nonnull instancetype)initWithAVPlayer:(nonnull AVPlayer *)player;

    Parameters

    player

    the AVPlayer to track.

    Return Value

    the IMAAVPlayerContentPlayhead instance